* { margin: 0; padding: 0; box-sizing: border-box; }

/* ─── WATCH PARTY SIGNAL / BROADCAST TOWER LAYOUT ─── */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f5f0ff;
    color: #1a1a1a;
    min-height: 100vh;
}

/* ─── BROADCAST HEADER ─── */
.broadcast-header {
    background: linear-gradient(160deg, #1a0038 0%, #2d0060 55%, #1a0038 100%);
    padding: 50px 70px 46px;
    display: flex;
    align-items: center;
    gap: 52px;
    border-bottom: 4px solid #7c4dff;
    position: relative;
    overflow: hidden;
}

.broadcast-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(124,77,255,0.15) 0%, transparent 55%);
    pointer-events: none;
}

/* Broadcast tower visual */
.tower-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 160px;
    position: relative;
}

/* Signal rings */
.signal-rings {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
}

.sr {
    position: absolute;
    top: 0;
    border: 2px solid rgba(124,77,255,0.5);
    border-radius: 50%;
    transform: translateX(-50%);
    left: 50%;
    animation: expand 2.5s ease-out infinite;
}

.sr1 { width: 30px; height: 30px; margin-top: -15px; margin-left: -15px; animation-delay: 0s; }
.sr2 { width: 56px; height: 56px; margin-top: -28px; margin-left: -28px; animation-delay: 0.5s; }
.sr3 { width: 82px; height: 82px; margin-top: -41px; margin-left: -41px; animation-delay: 1s; }

@keyframes expand {
    0%   { opacity: 0.8; transform: scale(0.4) translateX(-50%); }
    100% { opacity: 0; transform: scale(1) translateX(-50%); }
}

.tower-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

.t-tip {
    width: 3px;
    height: 30px;
    background: #7c4dff;
}

.t-mid {
    width: 0;
    height: 0;
    border-style: solid;
}

.t-top-tri { border-width: 0 22px 26px 22px; border-color: transparent transparent #7c4dff transparent; }
.t-bot-tri { border-width: 26px 40px 0 40px; border-color: #5e35b1 transparent transparent transparent; }

.t-base {
    width: 96px;
    height: 14px;
    background: linear-gradient(to bottom, #5e35b1, #3f1f90);
    border-radius: 4px;
}

.t-stand {
    width: 14px;
    height: 22px;
    background: #5e35b1;
}

.t-ground {
    width: 80px;
    height: 8px;
    background: #3f1f90;
    border-radius: 4px;
}

/* Live dot */
.live-dot {
    position: absolute;
    top: 56px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ld-circle {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #f44336;
    animation: blink-red 1.2s ease-in-out infinite;
}

@keyframes blink-red {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.ld-text {
    font-size: 0.55em;
    font-weight: 800;
    letter-spacing: 2px;
    color: #f44336;
    text-transform: uppercase;
}

.bh-text { flex: 1; }

.bht-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(124,77,255,0.2);
    color: #b39ddb;
    font-size: 0.68em;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 14px;
    border: 1px solid rgba(124,77,255,0.4);
    margin-bottom: 16px;
}

h1 {
    font-size: 2em;
    color: #fff;
    max-width: 700px;
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 700;
}

.bh-lead {
    font-size: 1.02em;
    color: #b39ddb;
    max-width: 640px;
    line-height: 1.84;
}

a { color: #ce93d8; font-weight: 700; text-decoration: none; border-bottom: 1px solid #ce93d8; }
a:hover { color: #e1bee7; }

/* ─── CONTENT ─── */
.content-wrap {
    max-width: 1060px;
    margin: 0 auto;
    padding: 44px 70px 70px;
}

/* ─── BROADCAST STEP CARDS ─── */
.step-row {
    display: flex;
    gap: 0;
    margin-bottom: 22px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border: 1px solid #e0d8f0;
}

.step-item {
    flex: 1;
    padding: 20px 18px;
    border-right: 1px solid #e0d8f0;
    position: relative;
}

.step-item:last-child { border-right: none; }

.step-num {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c4dff, #5e35b1);
    color: #fff;
    font-size: 0.88em;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(124,77,255,0.3);
}

.step-title { font-size: 0.9em; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.step-desc  { font-size: 0.84em; color: #616161; line-height: 1.72; }

/* connector arrow */
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    background: #f5f0ff;
    flex-shrink: 0;
    color: #7c4dff;
    font-size: 0.9em;
}

/* ─── ARTICLE CARDS ─── */
.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border: 1px solid #e0d8f0;
    margin-bottom: 22px;
}

.ac-header {
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0ebff;
}

.ac-purple { background: #f5f0ff; }
.ac-soft   { background: #faf7ff; }

.ach-left { display: flex; align-items: center; gap: 10px; }
.ach-icon { font-size: 1.1em; }
.ach-label { font-size: 0.65em; letter-spacing: 2px; text-transform: uppercase; color: #9575cd; }

.ach-badge { font-size: 0.7em; padding: 3px 10px; border-radius: 10px; font-weight: 700; background: #ede7f6; color: #4527a0; }

.ac-body { padding: 20px 22px 18px; }
.ac-body h2 { font-size: 1.1em; color: #1a1a1a; margin-bottom: 10px; font-weight: 700; }
.ac-body h3 { font-size: 0.8em; color: #7e57c2; margin: 12px 0 5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.ac-body p  { font-size: 0.92em; line-height: 1.82; color: #424242; margin-bottom: 8px; }
.ac-body p:last-child { margin-bottom: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

ul { list-style: none; margin: 6px 0; }
li { padding: 5px 0 5px 18px; position: relative; font-size: 0.9em; color: #424242; border-bottom: 1px solid #f5f0ff; }
li:last-child { border-bottom: none; }
li::before { content: '◈'; position: absolute; left: 0; font-size: 0.55em; top: 8px; color: #7c4dff; }

/* poll / vote widget */
.vote-box {
    background: #faf7ff;
    border: 1px solid #e0d8f0;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 12px 0;
}

.vb-label { font-size: 0.72em; color: #9575cd; letter-spacing: 1px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }

.vote-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.vo-label { font-size: 0.82em; color: #1a1a1a; flex: 1; }

.vo-bar-wrap { width: 100px; height: 8px; background: #e8e0f8; border-radius: 4px; overflow: hidden; }
.vo-bar { height: 100%; border-radius: 4px; background: linear-gradient(to right, #7c4dff, #b39ddb); }

.vo-count { font-size: 0.72em; color: #7c4dff; font-weight: 700; min-width: 28px; text-align: right; }

footer { text-align: center; padding: 22px; color: #9e9e9e; font-size: 0.82em; border-top: 1px solid #e0d8f0; background: #fff; }

@media (max-width: 768px) {
    .broadcast-header, .content-wrap { padding-left: 24px; padding-right: 24px; }
    .broadcast-header { flex-direction: column; align-items: flex-start; }
    h1 { font-size: 1.6em; }
    .step-row { flex-direction: column; }
    .step-arrow { display: none; }
    .two-col { grid-template-columns: 1fr; }
}
