  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #C9993A;
    --gold-light: #F0D9A0;
    --gold-dark: #8A6520;
    --onyx: #111111;
    --onyx-mid: #1E1E1E;
    --onyx-surface: #252525;
    --onyx-card: #2D2D2D;
    --cream: #FAF7F2;
    --cream-dim: #EDE8DF;
    --text-muted: #9A9285;
    --text-light: #C8BFB0;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    font-size: 16px;
  }

  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--onyx);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(17,17,17,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid rgba(201,153,58,0.18);
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 60px;
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a {
    font-size: 0.875rem; font-weight: 400;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--cream); }
  .nav-cta {
    background: var(--gold); color: var(--onyx) !important;
    font-weight: 500 !important;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #D9A94A !important; }
  .hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--cream); font-size: 1.5rem; }

  /* ─── HERO ─── */
  .hero {
    min-height: 88vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 4rem 4rem 4rem 5rem;
    gap: 3rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(201,153,58,0.07) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
    border: 0.5px solid rgba(201,153,58,0.35);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--cream);
    margin-bottom: 1.25rem;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--gold);
  }
  .hero-sub {
    font-size: 1.05rem; font-weight: 300;
    color: var(--text-light);
    max-width: 440px;
    margin-bottom: 2.25rem;
    line-height: 1.75;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold);
    color: var(--onyx);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; font-weight: 500;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-sm);
    border: none; cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: #D9A94A; transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; font-weight: 400;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-sm);
    border: 0.5px solid rgba(250,247,242,0.25);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: rgba(250,247,242,0.5); background: rgba(250,247,242,0.05); }
  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    border-top: 0.5px solid rgba(201,153,58,0.18);
    padding-top: 2rem;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem; font-weight: 600;
    color: var(--gold);
    display: block;
  }
  .stat-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }

  /* Hero visual side */
  .hero-visual {
    position: relative;
    display: flex; flex-direction: column; gap: 1rem;
  }
  .hero-img-main {
    width: 100%; border-radius: var(--radius-lg);
    aspect-ratio: 4/3; object-fit: cover;
    border: 0.5px solid rgba(201,153,58,0.2);
  }
  .hero-img-placeholder {
    width: 100%; border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    background: var(--onyx-card);
    border: 0.5px solid rgba(201,153,58,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.875rem;
  }
  .hero-img-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }
  .hero-badge {
    position: absolute; bottom: -0.5rem; left: -1rem;
    background: var(--onyx-surface);
    border: 0.5px solid rgba(201,153,58,0.3);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.8rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #4CAF50; flex-shrink: 0; }
  .badge-text { color: var(--text-light); }
  .badge-text strong { color: var(--cream); font-weight: 500; display: block; }

  /* ─── SECTION BASE ─── */
  section { padding: 5rem 4rem; }
  .section-label {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600; color: var(--cream);
    margin-bottom: 0.75rem; line-height: 1.2;
  }
  .section-sub {
    font-size: 1rem; color: var(--text-muted);
    max-width: 520px; line-height: 1.75;
  }
  .section-header { margin-bottom: 3rem; }

  /* ─── TV SECTION ─── */
  .tv-section {
    background: var(--onyx-mid);
    border-top: 0.5px solid rgba(201,153,58,0.12);
    border-bottom: 0.5px solid rgba(201,153,58,0.12);
  }
  .tv-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
  .tv-embed-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 0.5px solid rgba(201,153,58,0.25);
    background: #000;
    aspect-ratio: 16/9;
  }
  .tv-embed-wrapper iframe {
    width: 100%; height: 100%;
    border: none; display: block;
  }
  .tv-live-badge {
    position: absolute; top: 14px; left: 14px;
    background: #CC2020; color: #fff;
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    display: flex; align-items: center; gap: 5px;
  }
  .tv-live-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.5s infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
  .tv-info { display: flex; flex-direction: column; gap: 1.75rem; }
  .tv-feature {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.25rem;
    background: var(--onyx-surface);
    border-radius: var(--radius-md);
    border: 0.5px solid rgba(250,247,242,0.06);
  }
  .tv-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(201,153,58,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .tv-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
  .tv-feature h4 { font-size: 0.9rem; font-weight: 500; color: var(--cream); margin-bottom: 0.25rem; }
  .tv-feature p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

  /* ─── BANNER / MEDIA SECTION ─── */
  .media-section { background: var(--onyx); }
  .media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .media-card {
    background: var(--onyx-card);
    border-radius: var(--radius-md);
    border: 0.5px solid rgba(250,247,242,0.07);
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
  }
  .media-card:hover { border-color: rgba(201,153,58,0.3); transform: translateY(-3px); }
  .media-card-img {
    width: 100%; aspect-ratio: 16/9;
    object-fit: cover; display: block;
    background: var(--onyx-surface);
  }
  .media-card-img-placeholder {
    width: 100%; aspect-ratio: 16/9;
    background: var(--onyx-surface);
    display: flex; align-items: center; justify-content: center;
  }
  .media-card-img-placeholder svg { width: 32px; height: 32px; opacity: 0.25; }
  .media-card-body { padding: 1.1rem 1.25rem 1.25rem; }
  .media-card-tag {
    font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.4rem;
  }
  .media-card-title { font-size: 0.92rem; font-weight: 500; color: var(--cream); margin-bottom: 0.4rem; }
  .media-card-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }

  /* Big feature card */
  .media-feature {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--onyx-card);
    border-radius: var(--radius-lg);
    border: 0.5px solid rgba(201,153,58,0.2);
    overflow: hidden;
    margin-bottom: 0.5rem;
  }
  .media-feature-img {
    aspect-ratio: 3/2; background: var(--onyx-surface);
    display: flex; align-items: center; justify-content: center;
  }
  .media-feature-img svg { width: 56px; height: 56px; opacity: 0.18; }
  .media-feature-body {
    padding: 2.5rem;
    display: flex; flex-direction: column; justify-content: center; gap: 1rem;
  }
  .feature-badge {
    display: inline-block;
    background: rgba(201,153,58,0.12);
    color: var(--gold);
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.3rem 0.75rem; border-radius: 100px;
    margin-bottom: 0.25rem; width: fit-content;
  }
  .media-feature-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 600; color: var(--cream);
    line-height: 1.25;
  }
  .media-feature-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

  /* ─── COMMUNITY PERKS ─── */
  .perks-section { background: var(--onyx-mid); }
  .perks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
  .perk-card {
    background: var(--onyx-surface);
    border-radius: var(--radius-md);
    border: 0.5px solid rgba(250,247,242,0.06);
    padding: 1.5rem;
    transition: border-color 0.25s;
  }
  .perk-card:hover { border-color: rgba(201,153,58,0.25); }
  .perk-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(201,153,58,0.10);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
  }
  .perk-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
  .perk-card h4 { font-size: 0.95rem; font-weight: 500; color: var(--cream); margin-bottom: 0.4rem; }
  .perk-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

  /* ─── AUTH SECTION ─── */
  .auth-section { background: var(--onyx); }
  .auth-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .auth-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 600; color: var(--cream);
    margin-bottom: 1rem; line-height: 1.2;
  }
  .auth-intro p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
  .auth-testimonial {
    background: var(--onyx-surface);
    border-radius: var(--radius-md);
    border-left: 2px solid var(--gold);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
  }
  .auth-testimonial blockquote {
    font-size: 0.88rem; color: var(--text-light);
    line-height: 1.75; font-style: italic;
    margin-bottom: 0.75rem;
  }
  .testimonial-author { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
  .testimonial-author strong { color: var(--gold); font-weight: 500; }

  /* Auth forms */
  .auth-forms { width: 100%; }
  .tabs {
    display: flex; border-bottom: 0.5px solid rgba(250,247,242,0.1);
    margin-bottom: 1.75rem; gap: 0;
  }
  .tab-btn {
    flex: 1; padding: 0.75rem 1rem;
    background: none; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; font-weight: 400;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -0.5px;
  }
  .tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); font-weight: 500; }
  .tab-panel { display: none; }
  .tab-panel.active { display: block; }
  .form-group { margin-bottom: 1.1rem; }
  label {
    display: block; font-size: 0.8rem; font-weight: 500;
    color: var(--text-light); margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
  }
  input[type="text"], input[type="email"], input[type="password"] {
    width: 100%; padding: 0.7rem 0.9rem;
    background: var(--onyx-surface);
    border: 0.5px solid rgba(250,247,242,0.12);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    outline: none;
  }
  input:focus { border-color: rgba(201,153,58,0.5); }
  input::placeholder { color: var(--text-muted); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-submit {
    width: 100%; padding: 0.8rem;
    background: var(--gold); color: var(--onyx);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 500;
    border: none; border-radius: var(--radius-sm);
    cursor: pointer; margin-top: 0.5rem;
    transition: background 0.2s, transform 0.15s;
  }
  .form-submit:hover { background: #D9A94A; transform: translateY(-1px); }
  .form-divider {
    display: flex; align-items: center; gap: 1rem;
    margin: 1.25rem 0; color: var(--text-muted); font-size: 0.8rem;
  }
  .form-divider::before, .form-divider::after {
    content: ''; flex: 1; height: 0.5px;
    background: rgba(250,247,242,0.1);
  }
  .social-login { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .social-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.65rem 0.9rem;
    background: var(--onyx-surface);
    border: 0.5px solid rgba(250,247,242,0.1);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 400;
    cursor: pointer; transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
  }
  .social-btn:hover { border-color: rgba(250,247,242,0.25); color: var(--cream); }
  .social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
  .form-link {
    display: block; text-align: center;
    margin-top: 1.25rem; font-size: 0.82rem;
    color: var(--text-muted);
  }
  .form-link a { color: var(--gold); text-decoration: none; }
  .form-link a:hover { text-decoration: underline; }
  .forgot-row {
    display: flex; justify-content: flex-end;
    margin-top: -0.4rem; margin-bottom: 0.8rem;
  }
  .forgot-row a { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; }
  .forgot-row a:hover { color: var(--gold); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--onyx-mid);
    border-top: 0.5px solid rgba(201,153,58,0.12);
    padding: 3rem 4rem 2rem;
  }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1.5fr 2fr; gap: 3rem; margin-bottom: 2.5rem; align-items: start; }
  .footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .footer-brand p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.75; max-width: 300px; }
  .footer-col h4 { font-size: 1.2rem; font-weight: 500; color: var(--cream); margin-bottom: 0.9rem; letter-spacing: 0.04em; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-col ul a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 0.5px solid rgba(250,247,242,0.07);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: var(--text-muted);
  }

  /* Footer Login specific styles */
  .footer-col.login-col #login {
    width: 100% !important;
  }
  .footer-col.login-col .login_innre {
    background: var(--onyx-surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 0.5px solid rgba(250,247,242,0.06);
  }
  .footer-col.login-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 600; color: var(--cream);
    margin-bottom: 0.5rem;
  }
  .footer-col.login-col p.title {
    font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem;
  }
  .footer-col.login-col .wow_form_fields { margin-bottom: 1rem; }
  .footer-col.login-col .login_signup_combo .btn-main {
    width: 100%; padding: 0.8rem;
    background: var(--gold); color: var(--onyx);
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
    border: none; border-radius: var(--radius-sm);
    cursor: pointer; transition: background 0.2s, transform 0.15s;
  }
  .footer-col.login-col .login_signup_combo .btn-main:hover {
    background: #D9A94A; transform: translateY(-1px);
  }

  /* ─── PRELOADER & EXTRAS ─── */
  .lb-preloader{
      display: none;
  }
  .chat-all-container {
      display: none;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding: 3rem 2.5rem; min-height: auto; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 2.4rem; }
    section { padding: 3.5rem 2.5rem; }
    .tv-layout { grid-template-columns: 1fr; }
    .auth-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .media-grid { grid-template-columns: 1fr 1fr; }
    .media-feature { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  @media (max-width: 640px) {
    nav { padding: 0 1.25rem; }
    .nav-links { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(17,17,17,0.95);
        padding: 1rem;
        border-bottom: 0.5px solid rgba(201,153,58,0.18);
        gap: 1rem;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero { padding: 2.5rem 1.5rem; }
    section { padding: 3rem 1.5rem; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .media-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .social-login { grid-template-columns: 1fr; }
    footer { padding: 2.5rem 1.5rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  }
