* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    margin: 0;
    background: #000;
    display: flex;
    justify-content: center;
}

/* PHONE */
.phone {
    width: 100%;
    max-width: 420px;
    min-height: 100vh;
    background: #0b0b0d;
    display: flex;
    flex-direction: column;
}

/* TOP BAR */
.topbar {
    height: 52px;
    background: #1c1c1e;
    border-bottom: 1px solid #2c2c2e;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 14px;
}

.topbar svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.4;
}

.top-right svg {
    margin-left: 16px;
}

/* CONTENT */
.content {
    flex: 1;
    padding: 12px;
    padding-bottom: 90px;
}

/* CARD */
.card {
    background: #1c1c1e;
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 16px;
}

.preview {
    height: 200px;
    background: linear-gradient(180deg, #2a2a2a, #111);
    border-radius: 14px;
    position: relative;
    margin-bottom: 12px;
}

.live {
    position: absolute;
    bottom: 12px;
    right: 12px;
    border: 1px solid #fff;
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 12px;
}

/* TEXT */
h1 {
    font-size: 21px;
    line-height: 1.2;
}

.date {
    font-size: 13px;
    color: #8e8e93;
}

/* INFO */
.info {
    background: #1c1c1e;
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 16px;
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
}

.muted {
    color: #6c6c70;
}

/* COMMENTS */
.comments {
    background: #1c1c1e;
    border-radius: 18px;
    padding: 14px;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comments-header button {
    background: transparent;
    border: 1px solid #3a3a3c;
    color: #fff;
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 12px;
}

.empty {
    margin-top: 12px;
    background: #111;
    padding: 14px;
    border-radius: 14px;
    color: #8e8e93;
}

/* BOTTOM BAR */
.tabbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    height: 72px;
    background: #1c1c1e;
    border-top: 1px solid #2c2c2e;
    display: flex;
}

.tab {
    flex: 1;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #8e8e93;
}

.tab svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.4;
}

.tab.active {
    color: #ffffff;
}
