    :root{
      --bg:#09090b;
      --bg-soft:#111118;
      --card:rgba(255,255,255,.04);
      --card-2:rgba(255,255,255,.06);
      --text:#ffffff;
      --muted:rgba(255,255,255,.72);
      --muted-2:rgba(255,255,255,.55);
      --border:rgba(255,255,255,.1);
      --accent:#d946ef;
      --accent-2:#8b5cf6;
      --accent-3:#ec4899;
      --white:#fff;
      --shadow:0 20px 60px rgba(0,0,0,.35);
      --radius:28px;
      --container:1240px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.6;
      position:relative;
    }

    body::before{
      content:"";
      position:fixed;
      inset:-20% -10% auto -10%;
      height:70vh;
      pointer-events:none;
      z-index:0;
      background:
        radial-gradient(circle at 12% 20%, rgba(217,70,239,.24), transparent 34%),
        radial-gradient(circle at 85% 14%, rgba(56,189,248,.18), transparent 32%),
        radial-gradient(circle at 46% 0%, rgba(139,92,246,.2), transparent 40%);
      filter:blur(14px);
      opacity:.85;
    }

    a{text-decoration:none;color:inherit}
    img{max-width:100%;display:block}
    input, textarea, button{
      font:inherit;
    }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
      position:relative;
      z-index:1;
    }

    .hero{
      position:relative;
      overflow:hidden;
      border-bottom:1px solid var(--border);
      background:
        radial-gradient(circle at 10% 10%, rgba(217,70,239,.18), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(139,92,246,.16), transparent 26%),
        radial-gradient(circle at 40% 100%, rgba(236,72,153,.18), transparent 30%),
        linear-gradient(135deg, #3a0b45 0%, #0b0b12 48%, #24123f 100%);
    }

    .hero-wrap{
      padding:64px 0 88px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:40px;
      align-items:center;
      position:relative;
      z-index:2;
    }

    .hero-wrap--poster-only{
      grid-template-columns:1fr;
      justify-items:center;
      gap:20px;
    }

    .hero-wrap--poster-only .topbar{
      width:100%;
    }

    .hero-wrap--poster-only .hero-visual{
      width:min(560px, 100%);
    }

    .hero-media{
      min-width:0;
      display:flex;
      flex-direction:column;
      align-items:flex-start;
    }

    .hero-media h2{
      font-size:clamp(28px, 4vw, 42px);
      margin:0 0 10px;
    }

    .hero-media-note{
      color:var(--muted);
      margin:0 0 14px;
    }

    .tiktok-card{
      border:1px solid var(--border);
      border-radius:24px;
      overflow:hidden;
      background:rgba(0,0,0,.38);
      box-shadow:var(--shadow);
      max-width:390px;
      width:min(390px, 100%);
      padding:12px;
    }

    .tiktok-slider-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }

    .tiktok-profile-link{
      color:#fff;
      font-weight:700;
      font-size:14px;
      opacity:.92;
    }

    .tiktok-nav{
      display:flex;
      gap:8px;
    }

    .tiktok-nav-btn{
      width:34px;
      height:34px;
      border-radius:10px;
      border:1px solid rgba(255,255,255,.22);
      background:rgba(255,255,255,.08);
      color:#fff;
      cursor:pointer;
      font-size:16px;
      line-height:1;
    }

    .tiktok-nav-btn:disabled{
      opacity:.45;
      cursor:not-allowed;
    }

    .tiktok-viewport{
      position:relative;
      border:1px solid rgba(255,255,255,.12);
      border-radius:16px;
      overflow:hidden;
      background:#0b0f1e;
      touch-action:pan-y;
      aspect-ratio:9 / 16;
    }

    .tiktok-viewport iframe,
    .tiktok-viewport video{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      border:0;
      display:block;
      background:#0b0f1e;
      object-fit:cover;
    }

    .tiktok-empty{
      display:none;
      min-height:220px;
      padding:18px;
      color:var(--muted);
      font-size:14px;
      align-items:center;
      justify-content:center;
      text-align:center;
    }

    .tiktok-empty.show{
      display:flex;
    }

    .tiktok-footer{
      margin-top:10px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      font-size:13px;
      color:var(--muted);
    }

    .tiktok-footer a{
      color:#f5d0fe;
      font-weight:600;
    }

    .topbar{
      grid-column:1 / -1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-bottom:10px;
    }

    .topbar-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }

    .contact-wrap{
      position:relative;
      display:inline-flex;
      align-items:center;
    }

    .brand{
      display:inline-flex;
      align-items:center;
      gap:14px;
      min-height:52px;
      padding:6px 12px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:16px;
      background:rgba(255,255,255,.04);
      font-weight:800;
      font-size:30px;
      letter-spacing:.01em;
    }

    .brand span{
      color:#fff;
      line-height:1;
    }

    .brand img{
      width:auto;
      max-width:220px;
      height:52px;
      border-radius:12px;
      object-fit:contain;
      box-shadow:0 8px 18px rgba(217,70,239,.25);
    }

    .account-link{
      display:inline-flex;
      align-items:center;
      gap:10px;
      min-height:46px;
      padding:0 16px;
      border:1px solid rgba(255,255,255,.16);
      border-radius:14px;
      background:rgba(255,255,255,.06);
      color:#fff;
      font-weight:700;
      transition:.2s ease;
    }

    .account-link:hover{
      background:rgba(255,255,255,.1);
      transform:translateY(-1px);
    }

    .account-link svg{
      width:18px;
      height:18px;
      fill:currentColor;
      opacity:.9;
    }

    .phone-link{
      display:inline-flex;
      align-items:center;
      gap:10px;
      min-height:46px;
      padding:0 16px;
      border:1px solid rgba(255,255,255,.16);
      border-radius:14px;
      background:rgba(255,255,255,.06);
      color:#fff;
      font-weight:700;
      transition:.2s ease;
      cursor:pointer;
      -webkit-appearance:none;
      appearance:none;
      font:inherit;
      box-sizing:border-box;
      outline:none;
    }

    button.phone-link::-moz-focus-inner{border:0;padding:0}

    .phone-link:hover{
      background:rgba(255,255,255,.1);
      transform:translateY(-1px);
    }

    .phone-link svg{
      width:18px;
      height:18px;
      fill:currentColor;
      opacity:.9;
    }

    .contact-popover{
      position:absolute;
      top:calc(100% + 10px);
      left:0;
      padding:10px 12px;
      border:1px solid rgba(255,255,255,.16);
      border-radius:16px;
      background-color:rgba(9,9,11,.92);
      backdrop-filter:blur(10px);
      box-shadow:0 18px 40px rgba(0,0,0,.45);
      color:#fff;
      opacity:0;
      visibility:hidden;
      transform:translateY(-6px);
      pointer-events:none;
      transition:.16s ease;
      z-index:40;
    }

    .contact-popover.open{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
      pointer-events:auto;
    }

    .contact-popover-phone{
      display:block;
      padding:8px 10px;
      border-radius:12px;
      color:#fff;
      font-weight:800;
      text-decoration:none;
      white-space:nowrap;
    }

    .contact-popover-phone:hover{
      background:rgba(255,255,255,.08);
    }

    .eyebrow{
      display:inline-flex;
      padding:8px 16px;
      border-radius:999px;
      border:1px solid rgba(244,114,182,.28);
      background:rgba(217,70,239,.09);
      color:#f5d0fe;
      font-size:14px;
      margin-bottom:18px;
    }

    h1,h2,h3{margin:0;line-height:1.1}
    .hero h1{
      font-size:clamp(38px, 7vw, 72px);
      font-weight:800;
      letter-spacing:-.03em;
      max-width:760px;
    }

    .hero p.lead{
      max-width:620px;
      margin:20px 0 0;
      color:var(--muted);
      font-size:clamp(16px, 2.1vw, 20px);
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:32px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:52px;
      padding:0 24px;
      border-radius:18px;
      font-weight:700;
      transition:transform .24s ease, box-shadow .24s ease, filter .24s ease, background .24s ease;
    }
    .btn-primary{
      background:var(--accent);
      color:#fff;
      box-shadow:0 12px 30px rgba(217,70,239,.28);
    }
    .btn-primary:hover{
      transform:translateY(-2px) scale(1.01);
      box-shadow:0 18px 44px rgba(217,70,239,.42), 0 0 22px rgba(217,70,239,.35);
      filter:saturate(1.06);
    }
    .btn-secondary{
      border:1px solid rgba(255,255,255,.15);
      background:rgba(255,255,255,.05);
      color:#fff;
    }
    .btn-secondary:hover{
      background:rgba(255,255,255,.09);
      transform:translateY(-2px);
      box-shadow:0 12px 30px rgba(3,8,25,.4);
    }

    .hero-stats{
      margin-top:36px;
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
      max-width:720px;
    }

    .stat, .card, .info-card, .event-card, .booking, .about-list{
      border:1px solid var(--border);
      background:var(--card);
      backdrop-filter: blur(14px) saturate(130%);
      -webkit-backdrop-filter: blur(14px) saturate(130%);
      box-shadow:var(--shadow);
      transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
    }

    .stat:hover, .card:hover, .info-card:hover, .event-card:hover, .booking:hover, .about-list:hover{
      transform:translateY(-4px);
      border-color:rgba(217,70,239,.34);
      box-shadow:0 22px 55px rgba(0,0,0,.45), 0 0 0 1px rgba(217,70,239,.14) inset;
      background:rgba(255,255,255,.06);
    }

    .stat{
      border-radius:22px;
      padding:18px;
    }
    .stat strong{
      display:block;
      font-size:28px;
      line-height:1;
      margin-bottom:8px;
    }
    .stat span{color:var(--muted-2);font-size:14px}

    .hero-visual{
      border-radius:34px;
      padding:16px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.05);
      box-shadow:var(--shadow);
      position:relative;
    }

    .hero-badge{
      display:inline-flex;
      border-radius:999px;
      border:1px solid rgba(244,114,182,.34);
      background:rgba(217,70,239,.12);
      color:#f5d0fe;
      padding:7px 12px;
      font-size:13px;
      font-weight:700;
      letter-spacing:.06em;
      margin-bottom:10px;
      pointer-events:auto;
    }

    .feature-offer h3{
      margin:0;
      font-size:clamp(30px, 4.2vw, 48px);
      line-height:1.05;
      text-shadow:0 6px 24px rgba(0,0,0,.45);
    }

    .feature-sub{
      margin:10px 0 0;
      max-width:100%;
      color:var(--muted);
      font-size:clamp(15px, 1.8vw, 19px);
    }

    .feature-offer .hero-actions{
      margin-top:14px;
    }

    .hero-visual-inner{
      border-radius:28px;
      padding:22px;
      border:1px solid var(--border);
      background:linear-gradient(135deg, rgba(217,70,239,.18), rgba(139,92,246,.08));
    }

    .hero-poster{
      min-height:560px;
      border-radius:24px;
      padding:28px;
      border:1px solid var(--border);
      background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.14), transparent 30%),
        linear-gradient(135deg, #111827, #1f1127, #0f172a);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }

    .hero-poster small{
      text-transform:uppercase;
      letter-spacing:.3em;
      color:#f5d0fe;
      opacity:.85;
    }

    .hero-poster .title{
      margin-top:14px;
      font-size:48px;
      font-weight:800;
    }

    .hero-poster .subtitle{
      margin-top:10px;
      color:var(--muted);
    }

    .mini-grid{
      display:grid;
      gap:12px;
      margin-top:18px;
    }

    .mini-box{
      border:1px solid var(--border);
      background:rgba(255,255,255,.05);
      border-radius:20px;
      padding:16px;
    }

    .mini-box .label{
      font-size:13px;
      color:var(--muted-2);
      margin-bottom:6px;
    }

    section{
      padding:72px 0;
    }

    .section-head{
      max-width:760px;
      margin-bottom:34px;
    }

    .section-kicker{
      color:#f0abfc;
      font-size:13px;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.25em;
      margin-bottom:12px;
    }

    .section-head h2{
      font-size:clamp(30px, 5vw, 52px);
      font-weight:800;
    }

    .section-head p{
      margin:16px 0 0;
      color:var(--muted);
      font-size:18px;
    }

    .offer-strip{
      padding:28px 0 10px;
    }

    .offer-card{
      border:1px solid var(--border);
      border-radius:24px;
      background:linear-gradient(135deg, rgba(217,70,239,.14), rgba(139,92,246,.08), rgba(10,12,30,.7));
      padding:24px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }

    .offer-card::after{
      content:"";
      position:absolute;
      inset:auto -20% -55% -20%;
      height:180px;
      background:radial-gradient(circle at 50% 0%, rgba(217,70,239,.28), rgba(56,189,248,.1) 40%, transparent 70%);
      pointer-events:none;
      filter:blur(8px);
    }

    .offer-card h1{
      margin:0;
      font-size:clamp(28px, 5vw, 50px);
      line-height:1.12;
      font-weight:800;
    }

    .offer-card p{
      margin:14px 0 0;
      color:var(--muted);
      font-size:19px;
    }

    .location-layout{
      display:grid;
      grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
      gap:22px;
      align-items:stretch;
    }

    .location-copy{
      border:1px solid var(--border);
      border-radius:24px;
      background:rgba(255,255,255,.03);
      padding:22px;
      box-shadow:var(--shadow);
    }

    .location-copy h2{
      margin:0;
      font-size:clamp(28px, 4vw, 44px);
      line-height:1.14;
    }

    .location-copy p{
      margin:12px 0 0;
      color:var(--muted);
      font-size:18px;
    }

    .location-address{
      margin-top:14px;
      color:#fff;
      font-size:20px;
    }

    .location-map{
      border:1px solid var(--border);
      border-radius:24px;
      overflow:hidden;
      min-height:360px;
      box-shadow:var(--shadow);
      background:#101525;
    }

    .location-map iframe{
      width:100%;
      height:100%;
      min-height:360px;
      border:0;
      display:block;
    }

    .location-map:hover{
      box-shadow:0 24px 58px rgba(0,0,0,.5), 0 0 0 1px rgba(56,189,248,.18) inset;
      transform:translateY(-3px);
      transition:all .3s ease;
    }

    .seo-bottom{
      padding:16px 0 26px;
    }

    .seo-bottom-card{
      border:1px solid var(--border);
      border-radius:24px;
      padding:20px;
      background:rgba(255,255,255,.03);
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      align-items:center;
      justify-content:space-between;
    }

    .seo-bottom-card:hover{
      border-color:rgba(139,92,246,.36);
      box-shadow:0 20px 44px rgba(0,0,0,.4);
    }

    .seo-bottom-card p{
      margin:0;
      color:var(--muted);
      font-size:17px;
      flex:1 1 640px;
      max-width:900px;
    }

    .instagram-live-layout{
      display:grid;
      grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
      gap:24px;
      align-items:start;
    }

    .instagram-live-copy h2{
      margin:0;
      font-size:clamp(30px, 5vw, 56px);
      font-weight:800;
    }

    .instagram-live-copy p{
      margin:16px 0 0;
      color:var(--muted);
      font-size:18px;
    }

    .instagram-text-slot{
      margin-top:18px;
      border:1px dashed rgba(255,255,255,.24);
      border-radius:18px;
      background:rgba(255,255,255,.03);
      padding:16px;
      min-height:120px;
    }

    .instagram-text-slot strong{
      display:block;
      font-size:16px;
      margin-bottom:6px;
      color:#f5d0fe;
    }

    .instagram-text-slot p{
      margin:0;
      font-size:15px;
      color:var(--muted);
    }

    .instagram-card{
      justify-self:end;
    }

    .about-club-layout{
      display:grid;
      grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);
      gap:24px;
      align-items:start;
    }

    .about-club-text{
      max-width:100%;
      margin-bottom:0;
    }

    .about-club-text ul{
      margin:14px 0 0;
      color:var(--muted);
      padding-left:24px;
    }

    .about-club-gallery{
      min-width:0;
    }

    .club-gallery-card{
      border:1px solid var(--border);
      border-radius:24px;
      background:rgba(255,255,255,.04);
      box-shadow:var(--shadow);
      overflow:hidden;
      transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .club-gallery-card:hover{
      transform:translateY(-4px);
      border-color:rgba(217,70,239,.3);
      box-shadow:0 24px 58px rgba(0,0,0,.5), 0 0 32px rgba(217,70,239,.14);
    }

    .club-gallery-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:12px 14px;
      border-bottom:1px solid rgba(255,255,255,.12);
      background:rgba(0,0,0,.26);
      font-weight:700;
    }

    .club-gallery-nav{display:flex;gap:8px}

    .club-gallery-btn{
      width:34px;height:34px;border-radius:10px;
      border:1px solid rgba(255,255,255,.24);
      background:rgba(255,255,255,.08);color:#fff;
      cursor:pointer;font-size:16px;line-height:1;
    }
    .club-gallery-btn:disabled{opacity:.45;cursor:not-allowed}

    .club-gallery-frame{
      position:relative;
      background:#0b0f1e;
      min-height:420px;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .club-gallery-frame img{
      width:100%;
      height:100%;
      max-height:620px;
      object-fit:cover;
      display:block;
    }

    .club-gallery-empty{
      display:none;
      position:absolute;
      inset:0;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:20px;
      color:var(--muted);
      background:#0b0f1e;
    }
    .club-gallery-empty.show{display:flex}

    .club-gallery-foot{
      display:flex;
      justify-content:flex-end;
      padding:8px 12px;
      color:var(--muted);
      font-size:13px;
      border-top:1px solid rgba(255,255,255,.08);
      background:rgba(0,0,0,.22);
    }

    .grid-3{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:20px;
    }

    .card{
      border-radius:28px;
      padding:28px;
    }

    .card h3{
      font-size:28px;
      margin-bottom:12px;
    }

    .card p{
      color:var(--muted);
      margin:0;
    }

    .reels-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:20px;
    }

    .reel-card{
      overflow:hidden;
      border-radius:26px;
      border:1px solid var(--border);
      background:#000;
      box-shadow:var(--shadow);
    }

    .reel-frame{
      position:relative;
      aspect-ratio:9 / 16;
      width:100%;
      background:linear-gradient(180deg, rgba(217,70,239,.2), rgba(0,0,0,.4));
    }

    .reel-frame iframe,
    .reel-frame video{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      border:0;
      object-fit:cover;
      display:block;
    }

    .reel-empty{
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:20px;
      color:var(--muted);
      background:linear-gradient(180deg, rgba(217,70,239,.14), rgba(0,0,0,.45));
    }

    .reel-empty p{
      margin:0;
      max-width:260px;
      line-height:1.45;
    }

    .note{
      margin-top:18px;
      color:var(--muted-2);
      font-size:14px;
    }

    .events-section{
      border-top:1px solid var(--border);
      border-bottom:1px solid var(--border);
      background:rgba(255,255,255,.02);
    }

    .event-card{
      border-radius:28px;
      overflow:hidden;
      background:#12121a;
    }

    .event-cover{
      aspect-ratio:4 / 3;
      background:linear-gradient(135deg, rgba(217,70,239,.38), rgba(139,92,246,.18), #101018);
      position:relative;
      overflow:hidden;
    }

    .event-cover img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .event-cover-empty{
      position:absolute;
      inset:0;
      display:none;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:16px;
      color:var(--muted);
      background:linear-gradient(180deg, rgba(217,70,239,.14), rgba(0,0,0,.45));
    }

    .event-cover-empty.show{display:flex}

    .event-cover-nav{
      position:absolute;
      top:10px;
      right:10px;
      display:flex;
      gap:8px;
      z-index:2;
    }

    .event-cover-btn{
      width:32px;
      height:32px;
      border-radius:10px;
      border:1px solid var(--border);
      background:rgba(15,23,42,.72);
      color:#fff;
      cursor:pointer;
      font-size:16px;
      line-height:1;
    }

    .event-cover-btn:disabled{
      opacity:.45;
      cursor:not-allowed;
    }

    .event-cover-counter{
      position:absolute;
      left:10px;
      bottom:10px;
      z-index:2;
      padding:4px 8px;
      border-radius:999px;
      font-size:12px;
      color:#fff;
      border:1px solid var(--border);
      background:rgba(15,23,42,.72);
    }

    .event-body{
      padding:24px;
    }

    .event-body h3{
      font-size:28px;
      margin-bottom:10px;
    }

    .event-body p{
      margin:0;
      color:var(--muted);
    }

    .event-body .btn{
      margin-top:18px;
      min-height:46px;
      padding:0 18px;
      font-size:15px;
      border-radius:14px;
    }

    .tiktok-card{
      transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .tiktok-card:hover{
      transform:translateY(-4px);
      border-color:rgba(217,70,239,.34);
      box-shadow:0 24px 64px rgba(0,0,0,.52), 0 0 30px rgba(217,70,239,.18);
    }

    .tiktok-viewport video{
      transition:transform .5s ease;
    }

    .tiktok-card:hover .tiktok-viewport video{
      transform:scale(1.02);
    }

    .reveal{
      opacity:0;
      transform:translateY(26px) scale(.985);
      filter:blur(4px);
      transition:opacity .62s ease, transform .62s ease, filter .62s ease;
      will-change:opacity, transform, filter;
    }

    .reveal.is-visible{
      opacity:1;
      transform:translateY(0) scale(1);
      filter:blur(0);
    }

    .two-col{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
      align-items:start;
    }

    .about-list, .booking{
      border-radius:32px;
      padding:30px;
    }

    .about-list ul{
      list-style:none;
      padding:0;
      margin:24px 0 0;
    }

    .about-list li{
      padding:12px 0;
      border-bottom:1px solid rgba(255,255,255,.08);
      color:var(--muted);
    }

    .about-list li:last-child{border-bottom:0}

    .booking{
      background:linear-gradient(135deg, rgba(217,70,239,.14), rgba(139,92,246,.08));
      border:1px solid rgba(244,114,182,.18);
    }

    .form-grid{
      display:grid;
      gap:14px;
      margin-top:24px;
    }

    .field{
      width:100%;
      min-height:54px;
      border-radius:18px;
      border:1px solid var(--border);
      background:rgba(0,0,0,.32);
      color:#fff;
      padding:0 16px;
      outline:none;
    }

    textarea.field{
      min-height:140px;
      padding:14px 16px;
      resize:vertical;
    }

    .field::placeholder{color:rgba(255,255,255,.35)}

    .contact-strip{
      margin-top:14px;
      color:var(--muted-2);
      font-size:14px;
    }

    footer{
      border-top:1px solid var(--border);
      background:rgba(0,0,0,.35);
      padding:28px 0 94px;
    }

    .footer-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      color:var(--muted-2);
      font-size:14px;
    }

    .footer-wrap a{
      color:var(--muted-2);
      text-decoration:none;
    }
    .footer-wrap a:hover{
      color:var(--text);
    }

    .mobile-bar{
      position:fixed;
      left:0;
      right:0;
      bottom:0;
      z-index:30;
      display:none;
      border-top:1px solid var(--border);
      background:rgba(9,9,11,.94);
      backdrop-filter:blur(10px);
      padding:12px 16px;
    }

    .mobile-bar .inner{
      width:min(var(--container), calc(100% - 0px));
      margin:0 auto;
      display:flex;
      gap:10px;
    }

    .mobile-bar .btn{
      flex:1;
      min-height:50px;
      padding:0 12px;
      font-size:15px;
    }

    @media (max-width: 1100px){
      .hero-wrap,
      .two-col,
      .grid-3,
      .reels-grid{
        grid-template-columns:1fr;
      }

      .about-club-layout{
        grid-template-columns:1fr;
      }

      .instagram-live-layout{
        grid-template-columns:1fr;
      }

      .location-layout{
        grid-template-columns:1fr;
      }

      .instagram-card{
        justify-self:start;
        max-width:100%;
      }

      .hero-poster{min-height:460px}
      .tiktok-card{max-width:100%}
    }

    @media (max-width: 767px){
      .container{
        width:min(var(--container), calc(100% - 24px));
      }

      .hero-wrap{
        padding:44px 0 60px;
        gap:26px;
      }

      .topbar{
        margin-bottom:0;
      }

      .topbar-actions{
        gap:8px;
      }

      .brand{
        min-height:46px;
        padding:4px 10px;
        font-size:24px;
      }

      .brand img{
        width:auto;
        max-width:165px;
        height:42px;
      }

      .account-link{
        min-height:42px;
        padding:0 12px;
      }

      .account-link span{
        display:none;
      }

      .phone-link{
        min-height:42px;
        padding:0 12px;
      }

      .phone-link span{
        display:none;
      }

      .contact-popover{
        left:0;
        right:auto;
        min-width:200px;
      }

      section{
        padding:54px 0;
      }

      .hero-actions{
        flex-direction:column;
      }

      .hero-actions .btn{
        width:100%;
      }

      .hero-stats{
        grid-template-columns:1fr;
      }

      .hero-poster{
        min-height:380px;
        padding:22px;
      }


      .hero-poster .title{
        font-size:38px;
      }

      .card, .about-list, .booking, .event-body{
        padding:22px;
      }

      .section-head p{
        font-size:16px;
      }

      .mobile-bar{
        display:block;
      }

      footer{
        padding-bottom:86px;
      }

      .footer-wrap{
        flex-direction:column;
        align-items:flex-start;
      }
    }

.collapsible-body{
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition:max-height .45s ease, opacity .25s ease;
}

.collapsible-body.open{
  max-height:1200px;
  opacity:1;
}

.account-page{
  min-height:100vh;
  padding:clamp(20px, 4vw, 44px) 0 clamp(34px, 6vw, 64px);
  background:
    radial-gradient(circle at 10% 10%, rgba(217,70,239,.18), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(139,92,246,.16), transparent 30%),
    linear-gradient(130deg, #280733, #0a0a10 52%, #1d1234);
}

.account-shell{
  max-width:980px;
  margin:0 auto;
}

.account-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.account-head-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.account-card{
  border:1px solid var(--border);
  background:linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border-radius:30px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
  padding:clamp(18px, 3vw, 34px);
}

.account-title{
  margin:0;
  font-size:clamp(34px, 4.5vw, 52px);
  letter-spacing:-.02em;
  line-height:1.02;
}

.account-intro{
  margin:10px 0 20px;
  max-width:680px;
}

.tab-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.btn-tab{
  min-height:42px;
  padding:0 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:#fff;
  font-weight:700;
  transition:.18s ease;
}

.btn-tab:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.08);
}

.btn-tab.active{
  background:rgba(217,70,239,.24);
  border-color:rgba(217,70,239,.45);
}

.flash{
  border-radius:12px;
  padding:10px 14px;
  margin-bottom:12px;
  font-size:14px;
}

.flash.ok{
  background:rgba(34,197,94,.15);
  border:1px solid rgba(34,197,94,.35);
  color:#dcfce7;
}

.flash.err{
  background:rgba(239,68,68,.15);
  border:1px solid rgba(239,68,68,.4);
  color:#fee2e2;
}

.account-form{
  display:grid;
  gap:12px;
}

.account-form .btn{
  width:100%;
}

.account-metrics{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
  margin:8px 0 14px;
}

.account-metric{
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  padding:12px 14px;
}

.account-metric-label{
  color:var(--muted-2);
  font-size:13px;
}

.account-metric-value{
  margin-top:4px;
  font-size:22px;
  font-weight:800;
  line-height:1.1;
}

.account-inner-tabs{
  margin-top:6px;
}

.account-tab-pane{
  display:none;
  margin-top:10px;
}

.account-tab-pane.active{
  display:block;
}

.account-actions-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
}

.account-action-card{
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.03);
  padding:14px;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}

.account-action-card strong{
  display:block;
  font-size:16px;
  margin-bottom:6px;
}

.account-action-card span{
  color:var(--muted);
  font-size:14px;
}

.account-action-card:hover{
  transform:translateY(-2px);
  border-color:rgba(217,70,239,.45);
  background:rgba(217,70,239,.08);
}

.account-welcome{
  margin:0 0 16px;
  font-size:18px;
}

.account-meta{
  color:var(--muted);
  font-size:14px;
}

.account-list{
  margin-top:18px;
}

.account-list h3{
  margin:0 0 10px;
  font-size:22px;
}

.account-table{
  width:100%;
  min-width:600px;
  border-collapse:collapse;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  background:rgba(7,11,20,.72);
}

.account-table-wrap{
  overflow-x:auto;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
}

.account-table th,
.account-table td{
  text-align:left;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:14px;
}

.account-table tr:last-child td{
  border-bottom:0;
}

@media (max-width: 900px){
  .account-head{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .account-head-actions{
    width:100%;
  }

  .account-head-actions .account-link{
    flex:1;
    justify-content:center;
  }

  .account-card{
    border-radius:22px;
  }

  .account-metrics{
    grid-template-columns:1fr;
  }

  .account-actions-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .account-shell{
    width:min(980px, calc(100% - 18px));
  }

  .account-title{
    font-size:34px;
  }

  .tab-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
  }

  .btn-tab{
    justify-content:center;
    text-align:center;
    width:100%;
  }

  .account-head-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
  }

  .account-head-actions .account-link{
    min-height:42px;
    padding:0 10px;
    font-size:14px;
  }

  .account-meta{
    font-size:13px;
  }
}
