:root {
    --bg: #070707;
    --bg-soft: #0d0d0c;
    --bg-soft-2: #151411;
    --text: #ffffff;
    --muted: #a19a8a;
    --gold: #f1d884;
    --gold-soft: #ffffff;
    --green: #25d366;
    --teal: #0aa6a6;
    --teal-dark: #0b3b3b;
    --border: rgba(216, 184, 92, 0.22);
    --radius: 10px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #000;
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}
.header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    max-width: 320px;
    height: auto;
    display: block;
}

/* Tabs */
.tabs {
    background: #000;
    border-bottom: 1px solid var(--border);
}
.tabs-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
}
.tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 14px;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.06);
    background: var(--bg-soft);
    color: var(--text);
    cursor: pointer;
    text-decoration: none;
    font-family: 'Inter', Arial, sans-serif;
    transition: background .25s ease, color .25s ease, transform .15s ease;
    min-height: 78px;
}
.tab:last-child { border-right: none; }

.tab .tab-title {
    font-weight: 800;
    font-size: 17px;
    line-height: 1.25;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.tab .tab-status {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(241, 216, 132, 0.3);
}

.tab.is-active {
    background: linear-gradient(180deg, #d8b85c 0%, #8d7030 100%);
    color: #000;
}
.tab.is-active .tab-title,
.tab.is-active .tab-status { color: #000; }
.tab.is-active .tab-status { color: rgba(0,0,0,0.7); }

.tab:not(.is-locked):not(.is-active):hover {
    background: var(--bg-soft-2);
}

.tab.is-locked {
    cursor: not-allowed;
    opacity: 0.55;
}
.tab.is-locked .tab-status { color: var(--muted); }

.tab.is-redirect:not(.is-locked) {
    background: var(--bg-soft);
}

/* Main panels */
.main {
    padding: 48px 20px 72px;
    background:
        radial-gradient(ellipse at top, rgba(216,184,92,0.07), transparent 60%),
        var(--bg);
    min-height: 60vh;
}

.panel { display: none; }
.panel.is-active { display: block; }

.video-wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}
.video-wrap iframe,
.video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease;
    z-index: 10;
}

.video-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.video-overlay:hover {
    background: rgba(0,0,0,0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: #d8b85c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    box-shadow: 0 0 30px rgba(216, 184, 92, 0.4);
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
}

.play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.play-text {
    color: #fff;
    font-weight: 900;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    letter-spacing: 0.05em;
}

.cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.btn-calendar {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.04em;
    padding: 16px 26px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(216,184,92,0.18);
    transition: transform .15s ease, box-shadow .15s ease;
}
.btn-calendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(216,184,92,0.32);
}
.btn-calendar svg { flex-shrink: 0; }

/* Locked panel */
.locked-panel {
    text-align: center;
    padding: 80px 20px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.02);
}
.locked-panel .locked-icon {
    font-size: 48px;
    margin-bottom: 12px;
}
.locked-panel h2 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 900;
    margin: 0 0 8px;
    color: var(--gold-soft);
}
.locked-panel p { color: var(--muted); margin: 0; }

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    background: #000;
    padding: 22px 0;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 720px) {
    .tabs-inner { grid-template-columns: 1fr; }
    .tab { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .tab .tab-title { font-size: 15px; }
    .btn-calendar { font-size: 13px; padding: 14px 20px; }
    .logo { max-width: 220px; }
    .main { padding: 28px 16px 48px; }
}
