@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --gold: #7DF9FF;
  --gold-light: #a5fbff;
  --gold-dim: rgba(125,249,255,0.1);
  --gold-border: rgba(125,249,255,0.22);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Montserrat', sans-serif;
  --dark: #080808;
  --dark2: #0d0d0d;
  --dark3: #1c1c1e;
  --dark4: #141416;
}

body { font-family: var(--sans); background: var(--dark); color: #fff; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
nav { background: rgba(16,16,16,0.98); border-bottom: 1px solid var(--gold-border); padding: 0 48px; height: 70px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 200; }
.nav-logo { display: flex; align-items: center; gap: 11px; cursor: pointer; text-decoration: none; flex-shrink: 0; }
.nav-logo-mark { width: 36px; height: 36px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--gold); }
.nav-logo-text { font-family: var(--serif); font-size: 17px; font-weight: 500; color: #fff; letter-spacing: .08em; }
.nav-links { display: flex; align-items: center; }
.nav-link { color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; padding: 8px 14px; cursor: pointer; transition: color .2s; text-decoration: none; white-space: nowrap; }
.nav-link:hover { color: rgba(255,255,255,0.8); }
.nav-link.active { color: var(--gold); }
.nav-link.connect { color: rgba(125,249,255,0.55); }
.nav-link.connect:hover, .nav-link.connect.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Profile button */
.profile-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.profile-btn:hover { border-color: var(--gold); }
.profile-btn svg { width: 18px; height: 18px; fill: var(--gold); }
.profile-btn .ini { font-size: 11px; font-weight: 600; color: var(--gold); display: none; }

/* Dropdown */
.dropdown { position: relative; }
.drop-menu { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: var(--dark3); border: 1px solid var(--gold-border); min-width: 170px; padding: 5px; z-index: 999; }
.drop-menu.open { display: block; }
.drop-item { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.6); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; padding: 10px 12px; cursor: pointer; font-weight: 500; transition: all .2s; }
.drop-item:hover { background: var(--gold-dim); color: var(--gold); }
.drop-item svg { width: 12px; height: 12px; fill: rgba(255,255,255,0.3); }
.drop-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 3px 0; }

/* ── HAMBURGER (mobile only) ── */
.hamburger { display: none; width: 36px; height: 36px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; border: 1px solid rgba(255,255,255,0.1); background: transparent; transition: all .2s; }
.hamburger:hover { border-color: var(--gold-border); }
.hamburger span { display: block; width: 16px; height: 1.5px; background: rgba(255,255,255,0.7); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.m-drawer { position: fixed; inset: 0; z-index: 400; pointer-events: none; }
.m-drawer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); opacity: 0; transition: opacity .3s; }
.m-drawer-panel { position: absolute; top: 0; left: 0; width: 85%; max-width: 300px; height: 100%; background: var(--dark4); border-right: 1px solid var(--gold-border); transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.m-drawer.open { pointer-events: all; }
.m-drawer.open .m-drawer-backdrop { opacity: 1; }
.m-drawer.open .m-drawer-panel { transform: translateX(0); }
.m-drawer-header { padding: 28px 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.m-drawer-logo { font-family: var(--serif); font-size: 22px; font-weight: 300; color: #fff; margin-bottom: 2px; }
.m-drawer-sub { font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: rgba(125,249,255,0.4); }
.m-drawer-nav { flex: 1; padding: 8px 0; overflow-y: auto; }
.m-drawer-item { display: flex; align-items: center; justify-content: space-between; padding: 15px 24px; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,0.4); cursor: pointer; transition: all .2s; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.04); }
.m-drawer-item:hover { color: var(--gold); background: var(--gold-dim); padding-left: 28px; }
.m-drawer-item.active { color: var(--gold); }
.m-drawer-item.connect { color: rgba(125,249,255,0.5); }
.m-drawer-item svg { width: 10px; height: 10px; fill: rgba(255,255,255,0.2); flex-shrink: 0; }
.m-drawer-item:hover svg, .m-drawer-item.active svg { fill: var(--gold); }
.m-drawer-footer { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.m-drawer-btn-primary { width: 100%; background: #7DF9FF; color: #000; border: none; padding: 13px; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; font-family: var(--sans); cursor: pointer; margin-bottom: 8px; transition: opacity .2s; }
.m-drawer-btn-primary:hover { opacity: 0.88; }
.m-drawer-btn-secondary { width: 100%; background: transparent; color: var(--gold); border: 1px solid var(--gold-border); padding: 11px; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-family: var(--sans); cursor: pointer; transition: all .2s; }
.m-drawer-btn-secondary:hover { background: var(--gold-dim); }
.m-drawer-btn-outline { width: 100%; background: transparent; color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.1); padding: 11px; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-family: var(--sans); cursor: pointer; }

/* ── OVERLAYS ── */
.overlay-bg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 500; overflow-y: auto; padding: 40px 16px; }
.overlay-bg.open { display: flex; align-items: flex-start; justify-content: center; }
.x-btn { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.15); background: var(--dark2); color: rgba(255,255,255,0.6); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; font-family: monospace; }
.x-btn:hover { border-color: var(--gold); color: var(--gold); }
.ov-eyebrow { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); text-align: center; margin-bottom: 6px; font-weight: 500; }
.ov-title { font-family: var(--serif); font-size: 24px; font-weight: 300; color: #fff; text-align: center; margin-bottom: 20px; letter-spacing: .03em; }

/* ── LOGIN ── */
.login-box { background: var(--dark3); border: 1px solid var(--gold-border); width: 100%; max-width: 380px; padding: 40px 28px 32px; position: relative; margin: auto; }
.l-label { font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 6px; display: block; }
.l-input { width: 100%; background: var(--dark4); border: 1px solid rgba(255,255,255,0.08); padding: 11px 14px; font-size: 13px; color: #fff; margin-bottom: 13px; outline: none; font-family: var(--sans); letter-spacing: .03em; transition: border-color .2s; border-radius: 0; -webkit-appearance: none; }
.l-input:focus { border-color: var(--gold-border); }
.l-input::placeholder { color: rgba(255,255,255,0.14); }
/* ── GLOBAL PRIMARY BUTTON ── */
.btn-gold { background: #7DF9FF; color: #000; border: none; padding: 13px 20px; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; font-family: var(--sans); cursor: pointer; transition: opacity .2s; display: inline-block; }
.btn-gold:hover:not(:disabled) { opacity: 0.88; }
.btn-gold:disabled { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.1); cursor: not-allowed; }

.l-btn { width: 100%; padding: 13px; font-size: 9px; font-weight: 600; cursor: pointer; font-family: var(--sans); letter-spacing: .16em; text-transform: uppercase; margin-top: 4px; border: none; transition: all .2s; }
.l-btn:not(:disabled) { background: #7DF9FF; color: #000; }
.l-btn:not(:disabled):hover { opacity: 0.88; }
.l-btn:disabled { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.1); cursor: not-allowed; }
.l-note { font-size: 10px; color: rgba(125,249,255,0.5); border-left: 2px solid var(--gold-border); padding: 7px 11px; margin-bottom: 13px; letter-spacing: .03em; line-height: 1.6; }
.l-err { font-size: 10px; color: #ff7070; margin-bottom: 8px; display: none; letter-spacing: .04em; }
.l-link { font-size: 9px; color: rgba(125,249,255,0.4); letter-spacing: .1em; text-transform: uppercase; cursor: pointer; text-align: center; margin-top: 12px; transition: color .2s; }
.l-link:hover { color: var(--gold); }
.l-step { display: none; }
.l-step.active { display: block; }
.l-sub { font-size: 9px; color: rgba(255,255,255,0.2); text-align: center; margin-bottom: 18px; letter-spacing: .12em; text-transform: uppercase; }
.verify-icon { width: 52px; height: 52px; border: 1px solid var(--gold-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.verify-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.v-countdown { font-family: var(--serif); font-size: 36px; color: var(--gold); text-align: center; margin: 12px 0 4px; }
.v-countdown-label { font-size: 9px; color: rgba(255,255,255,0.25); letter-spacing: .14em; text-transform: uppercase; text-align: center; margin-bottom: 18px; }

/* ── EXPAND OVERLAY (Events + Connect) ── */
.expand-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 500; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity 0.2s; }
.expand-overlay.open { display: flex; opacity: 1; }
.expand-box { background: #000; border: 2px solid var(--cyan); width: 100%; max-width: 560px; position: relative; max-height: 86vh; overflow-y: auto; }
.ev-ss-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: background .2s; display: inline-block; }
.ev-ss-dot.active { background: var(--cyan); box-shadow: 0 0 6px rgba(125,249,255,0.6); }

/* ── CHAT BACK BUTTON ── */
.cc-back-btn { flex-shrink: 0; margin-right: 4px; }
.cc-back-btn svg { fill: rgba(125,249,255,0.6); }
.cc-back-btn:hover svg { fill: var(--gold); }

/* ── YN TOGGLE ── */
.yn-toggle { display: flex; gap: 0; border: 1px solid rgba(255,255,255,0.1); }
.yn-btn { padding: 8px 16px; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); border: none; transition: all 0.2s; background: transparent; color: rgba(255,255,255,0.25); }
.yn-btn.active-yes { background: rgba(80,200,120,0.15); color: rgba(80,200,120,0.85); }
.yn-btn.active-no { background: rgba(255,80,80,0.1); color: rgba(255,80,80,0.65); }

/* ── AUTO-SAVE NOTE ── */
.auto-save-note { font-size: 9px; color: rgba(255,255,255,0.15); letter-spacing: .04em; margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 6px; }
.auto-save-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(80,200,120,0.5); }

/* ── VERIFY STATUS ── */
.verify-status { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; background: rgba(125,249,255,0.04); border: 1px solid rgba(125,249,255,0.1); margin-bottom: 12px; font-size: 10px; color: rgba(255,255,255,0.4); }
.verify-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.verify-dot.polling { background: rgba(125,249,255,0.6); animation: verifyPulse 1.5s ease-in-out infinite; }
.verify-dot.checking { background: rgba(100,180,220,0.7); animation: verifyPulse 0.8s ease-in-out infinite; }
.verify-dot.success { background: rgba(80,200,120,0.7); }
.verify-dot.error { background: rgba(255,80,80,0.6); }
@keyframes verifyPulse { 0%,100%{ opacity: 0.4; } 50%{ opacity: 1; } }
.verify-confirm-btn { width: 100%; padding: 12px; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); background: rgba(125,249,255,0.08); border: 1px solid rgba(125,249,255,0.2); color: var(--gold); transition: all 0.2s; margin-bottom: 10px; }
.verify-confirm-btn:hover { background: rgba(125,249,255,0.15); }
.verify-confirm-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.verify-resend { font-size: 10px; color: rgba(125,249,255,0.5); cursor: pointer; text-decoration: underline; }

/* ── MEMBERSHIP ── */
.mem-box { background: var(--dark3); border: 1px solid var(--gold-border); width: 100%; max-width: 460px; padding: 40px 28px 32px; position: relative; margin: auto; }
.mem-slider { overflow: hidden; }
.mem-track { display: flex; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.mem-slide { min-width: 100%; }
.mem-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.05); padding: 22px 18px; }
/* Credit card */
.mem-cc { width: 100%; aspect-ratio: 1.586; border-radius: 10px; padding: 18px 20px; display: flex; flex-direction: column; justify-content: space-between; margin-bottom: 18px; position: relative; overflow: hidden; }
.mem-cc::before { content: ''; position: absolute; top: -30px; right: -30px; width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.mem-cc::after { content: ''; position: absolute; bottom: -40px; left: -20px; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,0.03); }
.mem-cc-silver { background: linear-gradient(135deg,#8a9199 0%,#c8d4dc 45%,#9aa4ae 100%); }
.mem-cc-gold   { background: linear-gradient(135deg,#a07828 0%,#e2c060 45%,#b08930 100%); }
.mem-cc-plat   { background: linear-gradient(135deg,#4a5568 0%,#8892a0 45%,#5a6478 100%); }
.mem-cc-top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 1; }
.mem-cc-brand { font-family: var(--serif); font-size: 12px; font-weight: 500; color: rgba(0,0,0,0.45); letter-spacing: .04em; }
.mem-cc-chip { width: 26px; height: 20px; border-radius: 3px; background: rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.2); }
.mem-cc-holder { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(0,0,0,0.5); font-weight: 600; position: relative; z-index: 1; }
.mem-cc-bottom { display: flex; justify-content: flex-end; position: relative; z-index: 1; }
.mem-cc-tier-label { font-family: var(--serif); font-size: 15px; color: rgba(0,0,0,0.45); font-weight: 500; }
/* Card text */
.mem-tier { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 4px; font-weight: 500; }
.mem-name { font-family: var(--serif); font-size: 26px; font-weight: 300; margin-bottom: 2px; }
.mem-price { font-size: 20px; font-family: var(--serif); font-weight: 300; color: rgba(255,255,255,0.75); margin-bottom: 14px; }
.mem-price span { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: .06em; font-family: var(--sans); }
.mem-feats { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.mem-feat { display: flex; align-items: flex-start; gap: 9px; font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.5; }
.mem-feat-check { width: 13px; height: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; border-radius: 50%; }
.mem-fc-silver { background: rgba(176,184,193,0.1); border: 1px solid rgba(176,184,193,0.25); }
.mem-fc-silver svg { fill: rgba(176,184,193,0.8); }
.mem-fc-gold { background: rgba(125,249,255,0.1); border: 1px solid rgba(125,249,255,0.25); }
.mem-fc-gold svg { fill: rgba(125,249,255,0.8); }
.mem-fc-plat { background: rgba(136,146,160,0.1); border: 1px solid rgba(136,146,160,0.2); }
.mem-fc-plat svg { fill: rgba(136,146,160,0.8); }
.mem-feat-check svg { width: 7px; height: 7px; }
/* Buttons */
.mem-btn { width: 100%; padding: 12px; font-size: 9px; font-weight: 700; cursor: pointer; letter-spacing: .16em; text-transform: uppercase; font-family: var(--sans); transition: all .2s; border: none; }
.mb-silver { background: #c8d4dc; color: #1a2028; }
.mb-silver:hover { background: #d8e4ec; }
.mb-gold { background: var(--gold); color: #000; }
.mb-gold:hover { background: var(--gold-light); }
.mb-plat-apply { background: transparent; border: 1px solid rgba(136,146,160,0.3); color: rgba(136,146,160,0.7); }
.mb-plat-apply:hover { border-color: rgba(136,146,160,0.6); color: rgba(136,146,160,1); }
.mem-apply-note { font-size: 8px; color: rgba(255,255,255,0.2); text-align: center; margin-top: 7px; letter-spacing: .06em; }
/* keep old classes for backward compat */
.mb-out { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.55); }
.mb-out:hover { border-color: #fff; color: #fff; }
.mb-gold-out { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.mb-gold-out:hover { background: var(--gold-dim); }
.mem-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; }
.mem-arr { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; background: none; }
.mem-arr:hover { border-color: var(--gold); }
.mem-arr svg { width: 12px; height: 12px; fill: rgba(255,255,255,0.35); }
.mem-arr:hover svg { fill: var(--gold); }
.mem-dots { display: flex; gap: 5px; align-items: center; }
.mem-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.15); cursor: pointer; transition: all .2s; }
.mem-dot.on { width: 14px; }
.mem-dot-silver.on { background: #c8d4dc; }
.mem-dot-gold.on   { background: var(--gold); }
.mem-dot-plat.on   { background: #8892a0; }

/* ── HERO ── */
.hero { height: 580px; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: #120e05; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; border: 2px dashed rgba(125,249,255,0.12); }
.hero-bg svg { width: 36px; height: 36px; fill: rgba(125,249,255,0.07); }
.hero-bg-label { font-size: 9px; color: rgba(125,249,255,0.15); letter-spacing: .15em; text-transform: uppercase; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.58); }
.hero-content { position: relative; z-index: 2; padding: 0 20px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; justify-content: center; }
.hero-line { width: 36px; height: 1px; background: var(--gold); }
.hero-eyebrow-text { font-family: var(--serif); font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: #fff; font-weight: 400; }
.hero-logo-line { width: 180px; height: 1px; background: var(--gold); margin: 10px auto; }
.hero-logo-line-wide { width: 320px; }
.hero-h1 { font-family: var(--serif); font-size: 76px; font-weight: 300; line-height: 1; margin-bottom: 0; color: var(--gold); letter-spacing: .14em; }
.hero-logo-sub { font-family: var(--serif); font-size: 20px; font-weight: 400; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-bottom: 0; }
.hero-sub { font-family: var(--serif); font-size: 15px; letter-spacing: .2em; text-transform: uppercase; color: #fff; font-weight: 300; }

/* ── SECTIONS ── */
.section { padding: 56px 48px; }
.section-dark { background: var(--dark); }
.section-darker { background: var(--dark); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split-img { width: 100%; height: 260px; background: #120e05; border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.split-img svg { width: 26px; height: 26px; fill: rgba(125,249,255,0.12); }
.split-img span { font-size: 9px; color: rgba(125,249,255,0.18); letter-spacing: .14em; text-transform: uppercase; }
.section-eyebrow { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.section-eyebrow::before { content: ''; display: block; width: 18px; height: 1px; background: var(--gold); }
.section-h2 { font-family: var(--serif); font-size: 32px; font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.section-p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.9; font-weight: 300; }

/* ── MEMBERS SLIDER ── */
.members-section { padding: 64px 48px; background: var(--dark); border-top: 1px solid rgba(125,249,255,0.07); border-bottom: 1px solid rgba(125,249,255,0.07); }
.members-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.members-arrows { display: flex; gap: 7px; }
.slider-arr { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; background: none; }
.slider-arr:hover { border-color: var(--gold); }
.slider-arr svg { width: 13px; height: 13px; fill: rgba(255,255,255,0.4); }
.slider-arr:hover svg { fill: var(--gold); }
.members-viewport { overflow: hidden; }
.members-track { display: flex; gap: 14px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.member-card-s { min-width: calc(25% - 11px); background: var(--dark2); border: 1px solid rgba(255,255,255,0.04); padding: 20px 14px; text-align: center; flex-shrink: 0; transition: border-color .2s; }
.member-card-s:hover { border-color: var(--gold-border); }
.member-avatar-s { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--gold); }
.member-name-s { font-family: var(--serif); font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.member-handle-s { font-size: 9px; color: rgba(255,255,255,0.25); margin-bottom: 8px; letter-spacing: .08em; }
.member-badge-s { display: inline-flex; align-items: center; gap: 4px; background: var(--gold-dim); border: 1px solid var(--gold-border); padding: 2px 8px; font-size: 8px; color: var(--gold); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.member-badge-s svg { width: 8px; height: 8px; fill: var(--gold); }

/* ── FAQ ── */

/* ── FAQ CATEGORIES ─────────────────────────────────────────── */
.faq-cat { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-cat-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-family: var(--serif); font-size: 20px; font-weight: 300; color: rgba(255,255,255,0.85); transition: color .2s; }
.faq-cat-header:hover { color: #fff; }
.faq-cat-header .faq-icon { font-size: 18px; color: rgba(125,249,255,0.6); }
.faq-cat-body { display: none; padding-left: 0; }
.faq-cat-body.open { display: block; }
.faq-cat-body .faq-item { padding-left: 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.faq-cat-body .faq-item:last-child { border-bottom: none; }

.brands-section { background: linear-gradient(135deg, #0c0a06 0%, #080807 50%, #060608 100%); border-top: 1px solid rgba(201,168,76,0.12); border-bottom: 1px solid rgba(201,168,76,0.12); padding: 52px 48px; margin-bottom: 60px; }
.brands-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.brands-title { font-size: 22px; letter-spacing: .32em; text-transform: uppercase; color: var(--cyan); margin-bottom: 36px; font-family: 'Bebas Neue', 'Inter', sans-serif; text-shadow: 0 0 16px rgba(90,230,240,0.75), 0 0 36px rgba(90,230,240,0.3); }
.brands-logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
.brand-logo-img { object-fit: contain; opacity: 0.65; transition: opacity .25s; }
.brand-logo-img:hover { opacity: 1; }
/* ── DUO IMAGES SECTION ─────────────────────────────────── */
.hp-duo-section { margin-bottom: 60px; }
.hp-duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.hp-duo-cell { aspect-ratio: 3/2; background: var(--dark); background-size: cover; background-position: center; }
@media (max-width: 600px) { .hp-duo-grid { grid-template-columns: 1fr; } .hp-duo-cell { aspect-ratio: 16/9; } }
.faq-section { padding: 48px 48px; background: var(--dark); }
.faq-inner { max-width: 640px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 44px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 18px 0; cursor: pointer; }
.faq-q { display: flex; align-items: center; justify-content: space-between; font-family: var(--serif); font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.75); }
.faq-icon { width: 18px; height: 18px; border: 1px solid rgba(125,249,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gold); flex-shrink: 0; transition: all .2s; }
.faq-item.open .faq-icon { background: var(--gold-dim); transform: rotate(45deg); }
.faq-a { font-size: 15px; color: rgba(255,255,255,0.32); line-height: 1.85; margin-top: 11px; display: none; font-weight: 300; }
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { background: var(--dark); border-top: 1px solid rgba(125,249,255,0.12); padding: 48px 48px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 40px; }
.footer-brand .footer-logo { font-family: var(--serif); font-size: 22px; font-weight: 300; color: #fff; margin-bottom: 8px; }
.footer-brand .footer-sub { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.footer-brand .footer-desc { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.7; max-width: 220px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-btn { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: all .2s; cursor: pointer; text-decoration: none; }
.footer-social-btn:hover { border-color: rgba(125,249,255,0.3); background: rgba(125,249,255,0.06); }
.footer-social-btn svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.4); }
.footer-col-title { font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: rgba(125,249,255,0.55); margin-bottom: 14px; font-weight: 500; }
.footer-col-link { display: block; font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; margin-bottom: 9px; letter-spacing: .04em; transition: color .2s; }
.footer-col-link:hover { color: rgba(255,255,255,0.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 9px; color: rgba(255,255,255,0.18); letter-spacing: .1em; }
.footer-gold-line { width: 28px; height: 1px; background: rgba(125,249,255,0.3); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } footer { padding: 36px 20px 20px; } }

/* ── EVENTS ── */
.events-hero { padding: 44px 48px 0; background: var(--dark); }
.events-h1 { font-family: var(--serif); font-size: 52px; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 4px; }
.events-sub { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 24px; }
.search-wrap { position: relative; }
.search-wrap svg { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 13px; height: 13px; fill: rgba(125,249,255,0.35); pointer-events: none; }
.search-input { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 8px 0 8px 22px; font-size: 13px; color: #fff; width: 200px; font-family: var(--sans); outline: none; letter-spacing: .06em; transition: border-color .2s; }
.search-input:focus { border-bottom-color: var(--gold-border); }
.search-input::placeholder { color: rgba(255,255,255,0.15); }
.filters-bar { display: flex; align-items: center; padding: 0 48px; background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.04); flex-wrap: wrap; }
.filter-btn { background: transparent; border: none; border-bottom: 2px solid transparent; color: rgba(255,255,255,0.3); padding: 13px 14px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); font-weight: 500; transition: all .2s; }
.filter-btn:hover { color: rgba(255,255,255,0.6); }
.filter-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.date-wrap { margin-left: auto; display: flex; align-items: center; gap: 8px; padding: 6px 0; }
.date-sep { font-size: 9px; color: rgba(255,255,255,0.18); letter-spacing: .1em; text-transform: uppercase; }
.date-selector { position: relative; }
.date-display { background: transparent; border: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.4); padding: 6px 10px; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); min-width: 90px; display: flex; align-items: center; justify-content: space-between; gap: 6px; transition: all .2s; }
.date-display:hover { border-color: var(--gold-border); }
.date-display svg { width: 10px; height: 10px; fill: var(--gold); flex-shrink: 0; }
.date-input-hidden { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.date-clear { background: none; border: none; color: rgba(125,249,255,0.3); font-size: 13px; cursor: pointer; padding: 0 3px; transition: color .2s; }
.date-clear:hover { color: var(--gold); }
.events-count { font-size: 9px; color: rgba(255,255,255,0.18); letter-spacing: .1em; text-transform: uppercase; padding: 12px 48px 0; background: var(--dark); }
.events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 20px 48px 56px; background: var(--dark); }
.event-card { background: #161616; border: 1px solid rgba(255,255,255,0.08); overflow: hidden; transition: all .2s; }
.event-card:hover { background: #1c1c1c; border-color: rgba(125,249,255,0.2); }
.event-card.hidden { display: none; }
.event-img { height: 190px; background: #222; display: flex; align-items: center; justify-content: center; position: relative; }
.event-img svg { width: 24px; height: 24px; fill: rgba(255,255,255,0.05); }
.event-tag { position: absolute; top: 0; left: 0; padding: 5px 12px; font-size: 8px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.tag-action { background: rgba(139,26,26,0.9); color: #ffaaaa; }
.tag-calm { background: rgba(10,61,46,0.9); color: #7edcb8; }
.tag-eventful { background: rgba(45,26,94,0.9); color: #c0a8ff; }
.tag-morning { background: rgba(74,46,0,0.9); color: #ffd080; }
.tag-evening { background: rgba(10,26,61,0.9); color: #80aaff; }
.event-heart { position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.65); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.event-heart:hover { border-color: var(--gold); }
.event-heart svg { width: 12px; height: 12px; fill: none; stroke: rgba(255,255,255,0.4); stroke-width: 1.5; }
.event-heart.saved svg { fill: var(--gold); stroke: var(--gold); }
.event-body { padding: 16px; }
.event-name { font-family: var(--serif); font-size: 15px; color: #fff; line-height: 1.3; margin-bottom: 5px; }
.badge-pub { font-size: 8px; padding: 2px 8px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; background: rgba(37,99,235,0.08); color: #5585c0; border: 1px solid rgba(37,99,235,0.12); display: inline-block; margin-bottom: 7px; }
.event-desc { font-size: 13px; color: rgba(255,255,255,0.28); line-height: 1.7; margin-bottom: 10px; font-weight: 300; }
.event-date { font-size: 12px; color: rgba(125,249,255,0.45); margin-bottom: 4px; display: flex; align-items: center; gap: 5px; letter-spacing: .08em; text-transform: uppercase; }
.event-date svg { width: 9px; height: 9px; fill: rgba(125,249,255,0.35); }
.event-address { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.event-address svg { width: 9px; height: 9px; fill: rgba(255,255,255,0.2); flex-shrink: 0; }
.event-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.04); }
.event-att { font-size: 12px; color: rgba(255,255,255,0.2); }
.event-price { font-family: var(--serif); font-size: 17px; color: var(--gold); }
.event-prem { font-size: 8px; color: rgba(125,249,255,0.45); margin-top: 6px; display: flex; align-items: center; gap: 4px; letter-spacing: .1em; text-transform: uppercase; }
.event-prem svg { width: 8px; height: 8px; fill: rgba(125,249,255,0.4); }
.event-actions { display: flex; gap: 6px; margin-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 0; }
.btn-book { flex: 1; padding: 14px 8px; background: #7DF9FF; border: none; color: #000; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: opacity .2s; }
.btn-book:hover { opacity: 0.88; }
.btn-manage { flex: 1; padding: 8px; background: transparent; border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); font-size: 8px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); }
.launch-banner { background: rgba(125,249,255,0.06); border-bottom: 1px solid rgba(125,249,255,0.15); padding: 12px 48px; display: flex; align-items: center; justify-content: space-between; }
.launch-text { font-size: 10px; color: rgba(125,249,255,0.7); letter-spacing: .1em; text-transform: uppercase; }
.launch-label { font-size: 8px; color: rgba(125,249,255,0.35); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
.launch-countdown { font-family: var(--serif); font-size: 18px; color: var(--gold); }

/* ── CONNECT PAGE ── */
.connect-hero { padding: 44px 48px 28px; background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.04); }
.connect-h1 { font-family: var(--serif); font-size: 52px; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 4px; }
.connect-sub { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.22); }
.blur-banner { display: flex; align-items: stretch; gap: 0; }
.blur-banner-text { background: rgba(125,249,255,0.08); border: 1px solid rgba(125,249,255,0.15); padding: 20px 32px; flex: 1; }
.blur-banner-text strong { font-family: var(--serif); font-size: 20px; font-weight: 300; color: #fff; display: block; margin-bottom: 6px; letter-spacing: 0; }
.blur-banner-eyebrow { font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: rgba(125,249,255,0.55); margin-bottom: 6px; display: block; }
.blur-banner-sub { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; }
.blur-banner-btn { background: #7DF9FF; color: #000; border: none; padding: 20px 28px; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); white-space: nowrap; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: opacity .2s; }
.blur-banner-btn:hover { opacity: .85; }
.connect-filters { display: flex; align-items: center; padding: 0 48px; background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.04); flex-wrap: wrap; }
.connect-filter-btn { background: transparent; border: none; border-bottom: 2px solid transparent; color: rgba(255,255,255,0.3); padding: 12px 13px; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); font-weight: 500; transition: all .2s; }
.connect-filter-btn:hover { color: rgba(255,255,255,0.6); }
.connect-filter-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.lang-wrap { margin-left: auto; padding: 8px 0; }
.lang-select { background: var(--dark2); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); padding: 7px 10px; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--sans); outline: none; cursor: pointer; }
.lang-select option { background: var(--dark2); color: #fff; }
.connect-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 20px 48px 52px; background: var(--dark); }
.connect-card { background: #19191B; overflow: hidden; transition: all .2s; position: relative; }
.connect-card:hover { background: #222224; }
.connect-card.blurred .connect-card-body { filter: blur(6px); pointer-events: none; user-select: none; }
.page-blur-overlay { position: fixed; inset: 0; z-index: 90; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); background: rgba(8,8,8,0.7); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; }
.page-blur-overlay .blur-box { background: rgba(13,13,13,0.95); border: 1px solid rgba(125,249,255,0.2); padding: 40px 48px; max-width: 440px; }
.page-blur-overlay .blur-eyebrow { font-size: 8px; letter-spacing: .22em; text-transform: uppercase; color: rgba(125,249,255,0.55); margin-bottom: 12px; }
.page-blur-overlay .blur-title { font-family: var(--serif); font-size: 28px; font-weight: 300; color: #fff; margin-bottom: 10px; }
.page-blur-overlay .blur-sub { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 24px; }
.page-blur-overlay .blur-btn { background: #7DF9FF; border: none; color: #000; padding: 12px 28px; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); }
.connect-card.hidden { display: none; }
.connect-card-img { height: 200px; background: var(--dark2); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.connect-card-img svg { width: 28px; height: 28px; fill: rgba(255,255,255,0.06); }
.connect-card-img img { width: 100%; height: 100%; object-fit: cover; }
.connect-card-avatar { position: absolute; bottom: 10px; left: 10px; width: 44px; height: 44px; border-radius: 50%; background: var(--gold-dim); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--gold); flex-shrink: 0; }
.connect-card-cat { position: absolute; top: 10px; right: 10px; background: rgba(8,8,8,0.85); border: 1px solid var(--gold-border); padding: 4px 9px; font-size: 8px; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.connect-card-body { padding: 14px; }
.connect-card-name { font-family: var(--serif); font-size: 18px; color: #fff; margin-bottom: 2px; }
.connect-card-handle { font-size: 9px; color: rgba(255,255,255,0.3); letter-spacing: .07em; margin-bottom: 9px; }
.connect-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 9px; }
.connect-card-tag { font-size: 7px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.08); padding: 3px 8px; }
.connect-card-tag.gold { color: rgba(125,249,255,0.6); border-color: rgba(125,249,255,0.2); }
.connect-card-bio { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.6; margin-bottom: 8px; }
.connect-card-collab { font-size: 12px; color: rgba(125,249,255,0.42); letter-spacing: .04em; line-height: 1.5; margin-bottom: 11px; }
.connect-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 9px; border-top: 1px solid rgba(255,255,255,0.05); }
.connect-card-followers { font-size: 9px; color: rgba(255,255,255,0.2); }
.connect-btn { background: var(--gold); color: #000; border: none; padding: 9px 18px; font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: all .2s; }
.connect-btn:hover { background: var(--gold-light); }
.connect-btn.sent { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.1); cursor: default; }
.connect-btn.sent:hover { background: rgba(255,255,255,0.06); }
.connect-lock { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; cursor: pointer; }
.connect-lock-icon { width: 40px; height: 40px; border: 1px solid rgba(125,249,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.connect-lock-icon svg { width: 16px; height: 16px; fill: rgba(125,249,255,0.5); }
.connect-lock-text { font-size: 8px; color: rgba(255,255,255,0.4); letter-spacing: .12em; text-transform: uppercase; text-align: center; line-height: 1.6; }

/* ── DASHBOARD ── */
.dash-header { padding: 36px 48px 28px; border-bottom: 1px solid rgba(255,255,255,0.04); background: var(--dark); }
.dash-welcome { font-family: var(--serif); font-size: 36px; font-weight: 300; color: #fff; margin-bottom: 4px; }
.dash-tier { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.dash-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0 48px; background: var(--dark); overflow-x: auto; }
.dash-tab { font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 16px 20px; cursor: pointer; border-bottom: 2px solid transparent; transition: all .2s; font-weight: 500; white-space: nowrap; flex-shrink: 0; }
.dash-tab:hover { color: rgba(255,255,255,0.6); }
.dash-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.dash-content { padding: 36px 48px; background: var(--dark); min-height: 400px; }
.dash-panel { display: none; }
.dash-panel.active { display: block; }
.d-section { margin-bottom: 32px; }
.d-section-title { font-size: 36px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.d-section-title::after { content: ''; flex: 1; height: 1px; background: rgba(125,249,255,0.1); }
.d-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.d-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.d-field.full { grid-column: 1/-1; }
.d-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(125,249,255,0.45); }
.d-input { width: 100%; background: var(--dark4); border: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 12px 0; font-size: 16px; color: rgba(255,255,255,0.85); outline: none; font-family: var(--sans); letter-spacing: .04em; font-weight: 300; transition: border-color .25s; border-radius: 0; color-scheme: dark; }
.d-input:focus { border-bottom-color: rgba(125,249,255,0.6); }
.d-input::placeholder { color: rgba(255,255,255,0.08); font-style: italic; }
.d-input:disabled { color: rgba(125,249,255,0.5); border-bottom-color: rgba(125,249,255,0.12); }
.d-textarea { width: 100%; background: var(--dark4); border: 1px solid rgba(255,255,255,0.06); padding: 10px 12px; font-size: 14px; color: rgba(255,255,255,0.85); outline: none; font-family: var(--sans); letter-spacing: .04em; font-weight: 300; transition: border-color .25s; border-radius: 0; resize: vertical; min-height: 80px; }
.d-textarea:focus { border-color: rgba(125,249,255,0.4); }
.d-textarea::placeholder { color: rgba(255,255,255,0.08); font-style: italic; }
.d-save-btn { background: #7DF9FF; color: #000; border: none; padding: 11px 28px; font-size: 9px; font-weight: 700; cursor: pointer; font-family: var(--sans); letter-spacing: .14em; text-transform: uppercase; transition: opacity .2s; margin-top: 8px; }
.d-save-btn:hover { opacity: 0.88; }
.d-ghost-btn { background: transparent; color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.1); padding: 10px 22px; font-size: 9px; font-weight: 600; cursor: pointer; font-family: var(--sans); letter-spacing: .14em; text-transform: uppercase; transition: all .2s; margin-top: 8px; margin-left: 8px; }
.d-ghost-btn:hover { border-color: rgba(255,255,255,0.22); color: #fff; }
.d-success { font-size: 10px; color: rgba(100,200,100,0.7); letter-spacing: .08em; display: none; margin-top: 8px; }

/* Profile pic */
.profile-pic-area { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.profile-pic-preview { width: 80px; height: 80px; border-radius: 50%; background: var(--dark2); border: 2px solid var(--gold-border); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; position: relative; }
.profile-pic-preview svg { width: 28px; height: 28px; fill: rgba(255,255,255,0.2); }
.profile-pic-preview .ini-big { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--gold); display: none; }
.profile-pic-preview img { width: 100%; height: 100%; object-fit: cover; display: none; }
.pic-upload-btn { background: #7DF9FF; border: none; color: #000; padding: 10px 20px; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: opacity .2s; display: inline-block; margin-bottom: 8px; }
.pic-upload-btn:hover { opacity: 0.88; }
.pic-hint { font-size: 12px; color: rgba(255,255,255,0.2); letter-spacing: .06em; }
.pic-input { display: none; }

/* Category checkboxes */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cat-item { background: var(--dark2); border: 1px solid rgba(255,255,255,0.07); padding: 12px 14px; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.4); letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }
.cat-item:hover { border-color: var(--gold-border); color: rgba(255,255,255,0.7); }
.cat-item.selected, .cat-item.on { border-color: var(--gold); background: var(--gold-dim); color: var(--gold); }
.cat-item-check { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,0.15); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .2s; font-size: 12px; }
.cat-item.selected .cat-item-check, .cat-item.on .cat-item-check { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 700; }

/* Payment */
.pay-options { display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 0; }
.pay-option { background: var(--dark2); padding: 16px 20px; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.pay-option:last-child { border-bottom: none; }
.pay-option:hover { background: #131313; }
.pay-option.selected { background: rgba(125,249,255,0.04); border-left: 3px solid var(--gold); }
.pay-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
.pay-option.selected .pay-radio { border-color: var(--gold); }
.pay-option.selected .pay-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: block; }
.pay-info { flex: 1; }
.pay-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.pay-desc { font-size: 9px; color: rgba(255,255,255,0.28); }
.pay-logos { display: flex; gap: 5px; margin-left: auto; flex-shrink: 0; }
.pay-logo { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); padding: 4px 8px; font-size: 8px; color: rgba(255,255,255,0.45); letter-spacing: .06em; font-weight: 700; }
.pay-form { display: none; background: var(--dark4); border: 1px solid rgba(125,249,255,0.15); border-top: none; padding: 24px; }
.pay-form.vis { display: block; }
.pay-form-title { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600; }
.pay-field { margin-bottom: 16px; }
.pay-field-label { font-size: 8px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 7px; display: block; }
.pay-input { width: 100%; background: #19191B; border: 1px solid rgba(255,255,255,0.1); padding: 12px 14px; font-size: 15px; color: #fff; outline: none; font-family: var(--sans); letter-spacing: .04em; font-weight: 300; transition: border-color .2s; border-radius: 0; }
.pay-input:focus { border-color: rgba(125,249,255,0.5); }
.pay-input::placeholder { color: rgba(255,255,255,0.15); }
.pay-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-submit { background: var(--gold); color: #000; border: none; padding: 13px; font-size: 9px; font-weight: 700; cursor: pointer; font-family: var(--sans); letter-spacing: .14em; text-transform: uppercase; width: 100%; margin-top: 4px; transition: background .2s; }
.pay-submit:hover { background: var(--gold-light); }
.pay-secure { font-size: 9px; color: rgba(255,255,255,0.18); letter-spacing: .04em; margin-top: 10px; display: flex; align-items: center; gap: 6px; line-height: 1.6; }
.pay-secure svg { width: 11px; height: 11px; fill: rgba(255,255,255,0.18); flex-shrink: 0; }
.pay-hint { font-size: 10px; color: rgba(255,255,255,0.28); line-height: 1.7; margin-bottom: 16px; }

/* 3DS */
.tds-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 600; align-items: center; justify-content: center; }
.tds-overlay.open { display: flex; }
.tds-box { background: var(--dark3); border: 1px solid var(--gold-border); width: 100%; max-width: 320px; padding: 36px 28px; text-align: center; }
.tds-icon { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.tds-icon svg { width: 22px; height: 22px; fill: rgba(255,255,255,0.4); }
.tds-title { font-family: var(--serif); font-size: 22px; color: #fff; margin-bottom: 8px; font-weight: 300; }
.tds-sub { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 20px; }
.tds-btn { width: 100%; background: var(--gold); color: #000; border: none; padding: 13px; font-size: 9px; font-weight: 700; cursor: pointer; font-family: var(--sans); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; transition: background .2s; }
.tds-btn:hover { background: var(--gold-light); }
.tds-cancel { font-size: 9px; color: rgba(255,255,255,0.2); letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.tds-success { display: none; }
.tds-success-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(100,200,100,0.1); border: 1px solid rgba(100,200,100,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.tds-success-icon svg { width: 24px; height: 24px; fill: rgba(100,200,100,0.8); }

/* Connect requests */
.req-row { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.req-row:last-child { border-bottom: none; }
.req-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 13px; color: var(--gold); flex-shrink: 0; }
.req-info { flex: 1; }
.req-name { font-family: var(--serif); font-size: 16px; color: #fff; margin-bottom: 2px; }
.req-cat { font-size: 8px; color: rgba(255,255,255,0.3); letter-spacing: .1em; text-transform: uppercase; }
.req-accept { background: var(--gold); color: #000; border: none; padding: 6px 14px; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: background .2s; }
.req-accept:hover { background: var(--gold-light); }
.req-decline { background: transparent; color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.08); padding: 6px 14px; font-size: 8px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); margin-left: 5px; }

/* Saved/past events */
.saved-events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1px; background: rgba(255,255,255,0.03); margin-bottom: 28px; }
.saved-event { background: var(--dark4); overflow: hidden; }
.saved-event-img { height: 90px; background: var(--dark); position: relative; display: flex; align-items: center; justify-content: center; }
.saved-event-img svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.05); }
.saved-event-body { padding: 10px 12px; }
.saved-event-name { font-family: var(--serif); font-size: 15px; color: #fff; margin-bottom: 2px; }
.saved-event-date { font-size: 8px; color: rgba(125,249,255,0.4); letter-spacing: .07em; text-transform: uppercase; }
.saved-event-price { font-family: var(--serif); font-size: 13px; color: var(--gold); margin-top: 5px; }
.past-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.past-row:last-child { border-bottom: none; }
.past-name { font-family: var(--serif); font-size: 14px; color: rgba(255,255,255,0.7); }
.past-date { font-size: 8px; color: rgba(255,255,255,0.2); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
.past-badge { font-size: 8px; letter-spacing: .1em; text-transform: uppercase; color: rgba(125,249,255,0.5); border: 1px solid rgba(125,249,255,0.2); padding: 3px 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .connect-grid { grid-template-columns: repeat(3, 1fr); }
  .events-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; height: 60px; }
  .nav-links { display: none; }
  .dropdown { display: none; }
  .hamburger { display: flex; }
  .hero { height: 400px; }
  .hero-h1 { font-size: 38px; }
  .section { padding: 56px 20px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .members-section { padding: 48px 20px; }
  .member-card-s { min-width: calc(50% - 8px); }
  
/* ── FAQ CATEGORIES ─────────────────────────────────────────── */
.faq-cat { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-cat-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-family: var(--serif); font-size: 20px; font-weight: 300; color: rgba(255,255,255,0.85); transition: color .2s; }
.faq-cat-header:hover { color: #fff; }
.faq-cat-header .faq-icon { font-size: 18px; color: rgba(125,249,255,0.6); }
.faq-cat-body { display: none; padding-left: 0; }
.faq-cat-body.open { display: block; }
.faq-cat-body .faq-item { padding-left: 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.faq-cat-body .faq-item:last-child { border-bottom: none; }

.faq-section { padding: 56px 20px; }
  footer { padding: 28px 20px; }
  .events-hero { padding: 28px 20px 0; }
  .filters-bar { padding: 0 20px; }
  .date-wrap { display: none; }
  .events-count { padding: 10px 20px 0; }
  .events-grid { grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px 20px 40px; }
  .launch-banner { padding: 12px 20px; }
  .connect-hero { padding: 28px 20px 20px; }
  .connect-h1 { font-size: 38px; }
  .blur-banner { padding: 12px 20px; flex-direction: column; align-items: flex-start; }
  .connect-filters { padding: 0 20px; }
  .connect-grid { grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px 20px 40px; }
  .dash-header { padding: 24px 20px 20px; }
  .dash-tabs { padding: 0 20px; }
  .dash-content { padding: 28px 20px; }
  .d-grid { grid-template-columns: 1fr; }
  .d-field.full { grid-column: 1; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .connect-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
}

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark2); border-top: 1px solid var(--gold-border); padding: 16px 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 1000; flex-wrap: wrap; }
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; letter-spacing: .03em; flex: 1; min-width: 200px; }
.cookie-text a { color: rgba(125,249,255,0.6); text-decoration: none; }
.cookie-text a:hover { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--gold); color: #000; border: none; padding: 9px 20px; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: background .2s; }
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.1); padding: 9px 16px; font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); }
.cookie-banner.hidden { display: none; }


/* ── SOLD OUT STATUS ── */
.event-soldout { font-size: 8px; color: #ff7070; letter-spacing: .1em; text-transform: uppercase; margin-top: 5px; display: flex; align-items: center; gap: 4px; font-weight: 600; }
.event-soldout::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #ff7070; display: block; flex-shrink: 0; }
.btn-waitlist { flex: 1; padding: 8px; background: transparent; border: 1px solid rgba(255,113,113,0.3); color: rgba(255,113,113,0.7); font-size: 8px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: all .2s; }
.btn-waitlist:hover { border-color: #ff7070; color: #ff7070; }
.event-card.soldout { opacity: .85; }
.event-card.soldout .event-img::after { content: 'Ausgebucht'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(0,0,0,0.75); color: #ff7070; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 8px 16px; border: 1px solid rgba(255,113,113,0.3); white-space: nowrap; font-family: var(--sans); }

/* ── CONNECT — already connected ── */
.connect-btn.connected { background: rgba(100,200,100,0.08); color: rgba(100,200,100,0.7); border: 1px solid rgba(100,200,100,0.2); cursor: default; }
.connect-btn.connected:hover { background: rgba(100,200,100,0.08); }

/* ── IMPRESSUM etc. ── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 60px 48px; }
.legal-h1 { font-family: var(--serif); font-size: 42px; font-weight: 300; color: #fff; margin-bottom: 8px; }
.legal-sub { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 40px; }
.legal-section { margin-bottom: 32px; }
.legal-section h2 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: #fff; margin-bottom: 10px; }
.legal-section p, .legal-section li { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.85; font-weight: 300; letter-spacing: .02em; }
.legal-section ul { padding-left: 18px; }
.legal-section a { color: rgba(125,249,255,0.6); }
.legal-section a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .cookie-banner { padding: 14px 20px; }
  .legal-page { padding: 40px 20px; }
}

/* ══ ONBOARDING OVERLAY ══ */
.onboarding-overlay { display:none;position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:510;align-items:center;justify-content:center;padding:40px 16px }
.onboarding-overlay.open { display:flex }
.ob-box { background:var(--dark3);border:1px solid var(--gold-border);width:100%;max-width:480px;padding:40px 32px 32px;position:relative;margin:auto }
.ob-step { display:none }
.ob-step.active { display:block }
.ob-eyebrow { font-size:9px;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);text-align:center;margin-bottom:6px;font-weight:500 }
.ob-title { font-family:var(--serif);font-size:26px;font-weight:300;color:#fff;text-align:center;margin-bottom:6px }
.ob-sub { font-size:14px;color:rgba(255,255,255,.35);text-align:center;margin-bottom:28px;line-height:1.7 }
.ob-features { display:flex;flex-direction:column;gap:14px;margin-bottom:28px }
.ob-feat { display:flex;align-items:flex-start;gap:14px;background:#19191B;border:1px solid rgba(255,255,255,.06);padding:14px 16px }
.ob-feat-icon { width:38px;height:38px;border:1px solid var(--gold-border);display:flex;align-items:center;justify-content:center;flex-shrink:0 }
.ob-feat-icon svg { width:16px;height:16px;fill:var(--gold) }
.ob-feat-text { flex:1 }
.ob-feat-title { font-family:var(--serif);font-size:15px;color:#fff;margin-bottom:3px }
.ob-feat-desc { font-size:13px;color:rgba(255,255,255,.38);line-height:1.65;font-weight:300 }
.ob-btn { width:100%;background:var(--gold);color:#000;border:none;padding:13px;font-size:9px;font-weight:700;cursor:pointer;font-family:var(--sans);letter-spacing:.15em;text-transform:uppercase;transition:background .2s;margin-bottom:8px }
.ob-btn:hover { background:var(--gold-light) }
.ob-skip { font-size:9px;color:rgba(255,255,255,.22);letter-spacing:.1em;text-transform:uppercase;cursor:pointer;text-align:center;transition:color .2s }
.ob-skip:hover { color:rgba(255,255,255,.5) }
.ob-dots { display:flex;justify-content:center;gap:6px;margin-bottom:20px }
.ob-dot { width:5px;height:5px;background:rgba(255,255,255,.15);border-radius:50%;transition:all .2s }
.ob-dot.on { background:var(--gold);width:16px;border-radius:3px }

/* Membership overlay — final mode (no close button) */
/* final-mode: x-btn always visible — overlay can always be closed */
.mem-overlay-sub { display:none;font-size:14px;color:rgba(255,255,255,.35);text-align:center;margin-bottom:16px;line-height:1.6;border:1px solid var(--gold-border);padding:10px 14px;background:var(--gold-dim) }

/* Membership required overlay */
.mem-req-overlay { display:none;position:fixed;inset:0;background:rgba(0,0,0,.88);z-index:520;align-items:center;justify-content:center }
.mem-req-overlay.open { display:flex }
.mem-req-box { background:var(--dark3);border:1px solid var(--gold-border);max-width:360px;width:100%;padding:36px 28px;text-align:center;position:relative }
.mem-req-icon { width:50px;height:50px;border:1px solid var(--gold-border);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 14px }
.mem-req-icon svg { width:20px;height:20px;fill:var(--gold) }
.mem-req-title { font-family:var(--serif);font-size:22px;font-weight:300;color:#fff;margin-bottom:8px }
.mem-req-ctx { font-size:14px;color:rgba(255,255,255,.38);line-height:1.7;margin-bottom:18px }
.mem-req-btn { width:100%;background:var(--gold);color:#000;border:none;padding:12px;font-size:9px;font-weight:700;cursor:pointer;font-family:var(--sans);letter-spacing:.14em;text-transform:uppercase;margin-bottom:8px;transition:background .2s }
.mem-req-btn:hover { background:var(--gold-light) }
.mem-req-later { font-size:9px;color:rgba(255,255,255,.2);letter-spacing:.1em;text-transform:uppercase;cursor:pointer }

/* Membership banner (shown when logged in but no membership) */
.mem-banner { background:rgba(125,249,255,.08);border:1px solid rgba(125,249,255,.25);padding:12px 48px;display:none;align-items:center;justify-content:space-between;gap:16px }
.mem-banner.show { display:flex }
.mem-banner-text { font-size:13px;color:rgba(255,255,255,.55);line-height:1.6 }
.mem-banner-text strong { color:var(--gold) }
.mem-banner-btn { background:var(--gold);color:#000;border:none;padding:9px 18px;font-size:9px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;cursor:pointer;font-family:var(--sans);flex-shrink:0;transition:background .2s }
.mem-banner-btn:hover { background:var(--gold-light) }

/* ══ LANGUAGE SWITCHER ══ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 3px;
}
.lang-btn {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.28);
  cursor: pointer;
  padding: 4px 9px;
  transition: all .2s;
  font-family: var(--sans);
  line-height: 1;
  border: none;
  background: transparent;
  text-transform: uppercase;
}
.lang-btn:hover { color: rgba(255,255,255,.7); }
.lang-btn.active {
  background: var(--gold);
  color: #000;
}

/* ══ MEMBERSHIP SKIP BUTTON (first time overlay) ══ */
.mem-skip-btn {
  font-size: 9px;
  color: rgba(255,255,255,.2);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  margin-top: 12px;
  padding: 8px;
  transition: color .2s;
}
.mem-skip-btn:hover { color: rgba(255,255,255,.5); }
/* ── NEWS BANNER ───────────────────────────────────────────── */
.news-banner { background: var(--dark2); border-bottom: 1px solid rgba(125,249,255,0.12); padding: 28px 48px 32px; }
.news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; }
.news-eyebrow { font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: rgba(125,249,255,0.5); margin-bottom: 6px; }
.news-title { font-family: var(--serif); font-size: 22px; font-weight: 300; color: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.news-card { background: #131313; border: 1px solid rgba(255,255,255,0.06); padding: 18px 16px 14px; display: flex; flex-direction: column; gap: 10px; transition: border-color .2s; }
.news-card:hover { border-color: rgba(125,249,255,0.2); }
.news-card-tag { font-size: 7px; letter-spacing: .16em; text-transform: uppercase; color: rgba(125,249,255,0.55); font-weight: 600; }
.news-card-title { font-family: var(--serif); font-size: 15px; font-weight: 400; color: #fff; line-height: 1.4; }
.news-card-creator { display: flex; align-items: center; gap: 7px; }
.news-card-avatar { width: 20px; height: 20px; border-radius: 50%; background: rgba(125,249,255,0.1); border: 1px solid rgba(125,249,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; color: rgba(125,249,255,0.7); flex-shrink: 0; }
.news-card-name { font-size: 9px; color: rgba(255,255,255,0.35); letter-spacing: .06em; }
.news-card-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; flex: 1; }
.news-card-btn { margin-top: 4px; padding: 7px 0; background: transparent; border: 1px solid rgba(125,249,255,0.25); color: rgba(125,249,255,0.7); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: all .2s; width: 100%; }
.news-card-btn:hover { background: rgba(125,249,255,0.08); border-color: rgba(125,249,255,0.5); color: var(--gold); }
.news-card-btn:disabled { opacity: .4; cursor: not-allowed; }
@media (max-width: 768px) { .news-grid { grid-template-columns: repeat(2,1fr); } .news-banner { padding: 20px 20px 24px; } }
@media (max-width: 480px) { .news-grid { grid-template-columns: 1fr; } }
/* ── MULTI-SELECT DROPDOWN ──────────────────────────────────── */
.d-multi-dropdown { position: relative; }
.d-multi-trigger { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); cursor: pointer; font-size: 12px; color: rgba(255,255,255,0.6); }
.d-multi-trigger:hover { border-color: rgba(255,255,255,0.15); }
.d-multi-panel { border: 1px solid rgba(255,255,255,0.08); border-top: none; background: #19191B; max-height: 220px; overflow-y: auto; }
/* ── TRIPS PAGE ─────────────────────────────────────────────── */
.trips-hero { padding: 44px 48px 28px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.trips-eyebrow { font-size: 8px; letter-spacing: .22em; text-transform: uppercase; color: rgba(125,249,255,0.55); margin-bottom: 8px; }
.trips-h1 { font-family: var(--serif); font-size: 36px; font-weight: 300; color: #fff; margin-bottom: 6px; }
.trips-sub { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: .06em; }
.trips-nav-bar { display: flex; gap: 2px; padding: 20px 48px; border-bottom: 1px solid rgba(255,255,255,0.04); overflow-x: auto; }
.trip-nav-item { padding: 8px 18px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.3); cursor: pointer; border: 1px solid transparent; transition: all .2s; white-space: nowrap; }
.trip-nav-item:hover { color: rgba(255,255,255,0.6); }
.trip-nav-item.on { color: #7DF9FF; border-color: rgba(125,249,255,0.2); background: rgba(125,249,255,0.04); }
.trip-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.trip-gallery { position: relative; overflow: hidden; background: var(--dark2); min-height: 480px; }
.trip-img-placeholder { width: 100%; height: 100%; min-height: 480px; background: #1a1305; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.trip-img-placeholder svg { width: 40px; height: 40px; fill: rgba(125,249,255,0.12); }
.trip-img-placeholder span { font-size: 9px; color: rgba(125,249,255,0.18); letter-spacing: .14em; text-transform: uppercase; }
.gallery-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; }
.gallery-slide.active { opacity: 1; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); display: flex; justify-content: space-between; width: 100%; padding: 0 16px; pointer-events: none; z-index: 2; }
.gallery-btn { width: 40px; height: 40px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: all; transition: all .2s; }
.gallery-btn:hover { background: rgba(125,249,255,0.15); border-color: rgba(125,249,255,0.3); }
.gallery-btn svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); }
.gallery-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.gdot { width: 6px; height: 6px; background: rgba(255,255,255,0.25); cursor: pointer; transition: all .2s; }
.gdot.on { background: #7DF9FF; width: 18px; }
.gallery-counter { position: absolute; top: 16px; right: 16px; font-size: 9px; color: rgba(255,255,255,0.4); letter-spacing: .1em; background: rgba(0,0,0,0.4); padding: 4px 10px; z-index: 2; }
.trip-info { padding: 44px 48px; background: var(--dark2); border-left: 1px solid rgba(255,255,255,0.04); display: flex; flex-direction: column; }
.trip-tag { font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: rgba(125,249,255,0.55); margin-bottom: 12px; }
.trip-title { font-family: var(--serif); font-size: 38px; font-weight: 300; color: #fff; margin-bottom: 8px; line-height: 1.1; }
.trip-dates-row { display: flex; align-items: center; gap: 8px; font-size: 10px; color: rgba(125,249,255,0.7); letter-spacing: .1em; margin-bottom: 20px; }
.trip-desc { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.85; margin-bottom: 28px; flex: 1; }
.trip-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.trip-stat { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 14px 16px; }
.trip-stat-label { font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 6px; }
.trip-stat-val { font-family: var(--serif); font-size: 24px; font-weight: 300; color: #fff; }
.trip-stat-unit { font-size: 11px; color: rgba(255,255,255,0.35); font-family: var(--sans); }
.trip-stat-bar { height: 2px; background: rgba(255,255,255,0.06); margin-top: 8px; }
.trip-stat-bar-fill { height: 100%; background: #7DF9FF; transition: width .4s ease; }
.trip-book-btn { background: #7DF9FF; border: none; color: #000; padding: 14px 32px; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); width: 100%; transition: opacity .2s; }
.trip-book-btn:hover { opacity: .85; }
.trip-book-btn:disabled { opacity: .4; cursor: not-allowed; }
/* ── TRIP DETAIL SECTIONS ────────────────────────────────── */
.trip-eckdaten { display: flex; border-top: 1px solid rgba(255,255,255,0.06); }
.trip-eck-item { flex: 1; padding: 32px 40px; border-right: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 10px; }
.trip-eck-item:last-child { border-right: none; }
.trip-eck-icon { width: 18px; height: 18px; fill: rgba(125,249,255,0.4); flex-shrink: 0; }
.trip-eck-label { font-size: 8px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.trip-eck-val { font-size: 17px; color: #fff; font-weight: 300; line-height: 1.3; }
.trip-sect { padding: 52px 72px; border-top: 1px solid rgba(255,255,255,0.06); }
.trip-sect-head { font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: rgba(125,249,255,0.5); margin-bottom: 32px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.trip-itin-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.trip-map-wrap { height: 520px; background: #111; position: sticky; top: 70px; overflow: hidden; }
#trip-map { width: 100%; height: 100%; }
.trip-itin-list { padding-left: 52px; border-left: 1px solid rgba(255,255,255,0.06); }
.trip-itin-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.trip-itin-item.has-desc { cursor: pointer; }
.trip-itin-item.has-desc:hover .trip-itin-title { color: #7DF9FF; }
.trip-itin-hd { display: flex; align-items: center; gap: 18px; padding: 20px 0; }
.trip-itin-num { width: 28px; height: 28px; border: 1px solid rgba(125,249,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 9px; color: rgba(125,249,255,0.55); flex-shrink: 0; font-family: var(--sans); letter-spacing: .05em; }
.trip-itin-title { flex: 1; font-size: 15px; color: rgba(255,255,255,0.85); font-weight: 300; line-height: 1.4; transition: color .2s; }
.trip-itin-arr { width: 12px; height: 12px; fill: rgba(255,255,255,0.2); flex-shrink: 0; transition: transform .25s; }
.trip-itin-item.open .trip-itin-arr { transform: rotate(180deg); }
.trip-itin-desc { display: none; padding: 0 0 18px 46px; font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.85; }
.trip-itin-item.open .trip-itin-desc { display: block; }
.trip-itin-day-img { display: none; width: 100%; max-height: 240px; object-fit: cover; margin-bottom: 14px; }
.trip-itin-item.open .trip-itin-day-img { display: block; }
.ta-itin-img-wrap { display: none; padding: 4px 0 10px 46px; flex-direction: column; gap: 8px; }
.ta-itin-entry.open .ta-itin-img-wrap { display: flex; }
.ta-itin-img-preview { width: 100%; max-height: 160px; object-fit: cover; margin-bottom: 6px; display: block; }
.ta-itin-img-btn { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: rgba(125,249,255,0.7); border: 1px solid rgba(125,249,255,0.2); padding: 5px 12px; cursor: pointer; font-family: var(--sans); }
.trip-incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.trip-incl-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.trip-incl-check { width: 13px; height: 13px; fill: #7DF9FF; flex-shrink: 0; margin-top: 2px; }
.trip-incl-text { font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.5; }
.trip-acts-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 72px; }
.trip-acts-col-head { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.trip-acts-col-head.cyan { color: rgba(125,249,255,0.6); }
.trip-acts-col-head.gold { color: rgba(201,168,76,0.7); }
.trip-act-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.trip-act-dot { width: 4px; height: 4px; border-radius: 50%; flex-shrink: 0; }
.trip-act-dot.cyan { background: #7DF9FF; }
.trip-act-dot.gold { background: rgba(201,168,76,0.8); }
.trip-act-text { font-size: 13px; color: rgba(255,255,255,0.68); }
@media (max-width: 768px) {
  .trip-eckdaten { flex-direction: column; }
  .trip-eck-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 20px 24px; }
  .trip-sect { padding: 36px 24px; }
  .trip-itin-layout { grid-template-columns: 1fr; }
  .trip-map-wrap { height: 260px; position: relative; top: auto; }
  .trip-itin-list { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .trip-incl-grid { grid-template-columns: 1fr; gap: 0; }
  .trip-acts-2col { grid-template-columns: 1fr; gap: 32px; }
}
/* ── ADMIN TRIP FORM (wysiwyg) ─────────────────────────────── */
.ta-wrap { background: #111; border: 1px solid rgba(255,255,255,0.08); }
.ta-lang-bar { display: flex; align-items: center; gap: 0; padding: 14px 72px; border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02); }
.ta-lang-btn { padding: 6px 18px; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-family: var(--sans); cursor: pointer; border: 1px solid rgba(255,255,255,0.1); background: transparent; color: rgba(255,255,255,0.3); transition: all .2s; }
.ta-lang-btn.active { background: rgba(125,249,255,0.08); border-color: rgba(125,249,255,0.3); color: #7DF9FF; }
.ta-hero { padding: 40px 72px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ta-inp { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.08); color: inherit; font-family: inherit; font-size: inherit; font-weight: inherit; letter-spacing: inherit; width: 100%; outline: none; padding: 2px 0; transition: border-color .2s; }
.ta-inp:focus { border-bottom-color: rgba(125,249,255,0.4); }
.ta-inp::placeholder { color: rgba(255,255,255,0.15); }
.ta-tag-inp { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(125,249,255,0.7); margin-bottom: 10px; display: block; }
.ta-title-inp { font-family: var(--serif); font-size: 32px; font-weight: 500; color: #fff; line-height: 1.15; margin-bottom: 14px; display: block; }
.ta-desc-inp { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; resize: none; min-height: 56px; margin-bottom: 16px; display: block; }
.ta-meta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.ta-meta-item { display: flex; flex-direction: column; gap: 4px; }
.ta-meta-label { font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.ta-meta-inp { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: #fff; padding: 6px 10px; font-size: 12px; font-family: var(--sans); outline: none; width: 130px; color-scheme: dark; }
.ta-meta-inp:focus { border-color: rgba(125,249,255,0.3); }
.ta-pub-row { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
.ta-eck-inp { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.08); color: #fff; font-size: 17px; font-weight: 300; font-family: var(--sans); width: 100%; outline: none; padding: 2px 0; }
.ta-eck-inp:focus { border-bottom-color: rgba(125,249,255,0.4); }
.ta-eck-inp::placeholder { color: rgba(255,255,255,0.12); font-size: 13px; }
.ta-eck-en { display: none; }
.ta-map-col { display: flex; flex-direction: column; }
.ta-map-loc { padding: 12px 16px; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 10px; }
.ta-map-loc-inp { background: transparent; border: none; color: rgba(125,249,255,0.8); font-size: 11px; letter-spacing: .1em; font-family: var(--sans); outline: none; flex: 1; }
.ta-map-loc-inp::placeholder { color: rgba(255,255,255,0.18); }
.ta-itin-inp-title { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 300; font-family: var(--sans); flex: 1; outline: none; padding: 2px 0; }
.ta-itin-inp-title:focus { border-bottom-color: rgba(125,249,255,0.35); }
.ta-itin-inp-title::placeholder { color: rgba(255,255,255,0.12); }
.ta-itin-inp-desc { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); font-size: 13px; font-family: var(--sans); line-height: 1.8; resize: vertical; width: 100%; outline: none; padding: 8px 12px; margin: 0 0 10px 46px; box-sizing: border-box; display: none; }
.ta-itin-inp-desc:focus { border-color: rgba(125,249,255,0.2); }
.ta-itin-inp-desc::placeholder { color: rgba(255,255,255,0.1); }
.ta-itin-entry.open .ta-itin-inp-desc { display: block; }
.ta-remove-btn { width: 20px; height: 20px; background: transparent; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.25); cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; font-family: monospace; padding: 0; line-height: 1; }
.ta-remove-btn:hover { border-color: rgba(220,60,60,0.5); color: rgba(220,60,60,0.8); }
.ta-add-btn { margin-top: 14px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(125,249,255,0.5); background: transparent; border: 1px solid rgba(125,249,255,0.15); padding: 7px 16px; cursor: pointer; font-family: var(--sans); transition: all .2s; }
.ta-add-btn:hover { color: #7DF9FF; border-color: rgba(125,249,255,0.4); }
.ta-incl-inp { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.68); font-size: 13px; font-family: var(--sans); flex: 1; outline: none; padding: 2px 0; }
.ta-incl-inp:focus { border-bottom-color: rgba(125,249,255,0.3); }
.ta-incl-inp::placeholder { color: rgba(255,255,255,0.12); }
.ta-act-inp { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.68); font-size: 13px; font-family: var(--sans); flex: 1; outline: none; padding: 2px 0; }
.ta-act-inp:focus { border-bottom-color: rgba(125,249,255,0.3); }
.ta-act-inp::placeholder { color: rgba(255,255,255,0.12); }
/* Itinerary expand arrow */
.ta-itin-arr { width: 18px; height: 18px; fill: rgba(255,255,255,0.2); flex-shrink: 0; transition: transform .25s, fill .2s; cursor: pointer; }
.ta-itin-entry.open .ta-itin-arr { transform: rotate(180deg); fill: rgba(125,249,255,0.6); }
/* Incl/act description textarea */
.ta-incl-desc, .ta-act-desc { display: block; width: 100%; margin-top: 6px; padding: 6px 10px 6px 30px; background: transparent; border: none; border-left: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.35); font-size: 12px; font-family: var(--sans); line-height: 1.7; resize: vertical; outline: none; box-sizing: border-box; }
.ta-incl-desc:focus, .ta-act-desc:focus { border-left-color: rgba(125,249,255,0.25); color: rgba(255,255,255,0.6); }
.ta-incl-desc::placeholder, .ta-act-desc::placeholder { color: rgba(255,255,255,0.1); }
.ta-save-bar { padding: 20px 72px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; gap: 10px; background: rgba(255,255,255,0.02); }
/* ── TRIPS HOMEPAGE SLIDER ──────────────────────────────────── */
.ts-section { padding: 40px 48px; background: var(--dark); }
.ts-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.ts-eyebrow { font-size: 8px; letter-spacing: .22em; text-transform: uppercase; color: rgba(125,249,255,0.55); margin-bottom: 6px; }
.ts-title { font-family: var(--serif); font-size: 32px; font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.ts-arrows { display: flex; gap: 8px; }
.ts-arr { width: 36px; height: 36px; background: transparent; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.ts-arr:hover { border-color: rgba(125,249,255,0.4); background: rgba(125,249,255,0.06); }
.ts-arr svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.5); }
.ts-viewport { overflow: hidden; padding-top: 8px; margin-top: -8px; }
.ts-track { display: flex; gap: 16px; transition: transform .4s ease; }
.ts-card { flex-shrink: 0; width: 260px; background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); cursor: pointer; transition: border-color .2s; text-decoration: none; display: block; }
.ts-card:hover { border-color: rgba(125,249,255,0.2); }
.ts-card-img { width: 100%; height: 160px; background: #1a1305; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.ts-card-img svg { width: 28px; height: 28px; fill: rgba(125,249,255,0.12); }
.ts-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ts-card-tag { position: absolute; top: 10px; left: 10px; font-size: 7px; letter-spacing: .16em; text-transform: uppercase; color: #7DF9FF; background: rgba(0,0,0,0.55); padding: 3px 8px; }
.ts-card-body { padding: 14px 16px; }
.ts-card-title { font-family: var(--serif); font-size: 17px; font-weight: 300; color: #fff; margin-bottom: 5px; }
.ts-card-dates { font-size: 9px; color: rgba(255,255,255,0.35); margin-bottom: 8px; letter-spacing: .04em; }
.ts-card-spots { font-size: 9px; color: rgba(125,249,255,0.55); letter-spacing: .06em; }
.ts-card-bar { height: 2px; background: rgba(255,255,255,0.06); margin-top: 6px; }
.ts-card-bar-fill { height: 100%; background: rgba(125,249,255,0.4); }
@media (max-width: 768px) { .ts-section { padding: 40px 20px; } .ts-card { width: 220px; } }
/* ══ FLOATING CHAT ══════════════════════════════════════════════ */
#cc-chat-root { position: fixed; bottom: 24px; right: 24px; z-index: 9000; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; font-family: var(--sans); }
.cc-fab { width: 52px; height: 52px; background: #7DF9FF; border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; border: none; position: relative; transition: transform .2s; }
.cc-fab:hover { transform: scale(1.06); }
.cc-fab svg { width: 22px; height: 22px; fill: #000; }
.cc-badge { position: absolute; top: -2px; right: -2px; width: 18px; height: 18px; background: #e84a4a; border-radius: 50%; font-size: 9px; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; border: 2px solid #080808; }
#cc-convs { background: var(--dark2); border: 1px solid rgba(125,249,255,0.2); width: 300px; max-height: 360px; display: flex; flex-direction: column; overflow: hidden; }
.cc-convs-header { padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.06); background: var(--dark4); flex-shrink: 0; }
#cc-convs-list { overflow-y: auto; flex: 1; }
.cc-conv-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background .15s; }
.cc-conv-item:hover { background: rgba(255,255,255,0.02); }
.cc-conv-av { width: 32px; height: 32px; border-radius: 50%; background: rgba(125,249,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 10px; color: #7DF9FF; font-weight: 500; flex-shrink: 0; overflow: hidden; }
.cc-conv-name { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 2px; }
.cc-conv-preview { font-size: 12px; color: rgba(255,255,255,0.3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cc-empty-state { padding: 24px 16px; font-size: 13px; color: rgba(255,255,255,0.25); text-align: center; line-height: 1.7; }
#cc-chat-win { background: var(--dark2); border: 1px solid rgba(125,249,255,0.2); width: 300px; display: flex; flex-direction: column; }
.cc-chat-header { background: var(--dark4); padding: 10px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); cursor: pointer; }
.cc-chat-av { width: 32px; height: 32px; border-radius: 50%; background: rgba(125,249,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 10px; color: #7DF9FF; font-weight: 500; flex-shrink: 0; overflow: hidden; }
.cc-chat-name { font-size: 14px; color: #fff; }
.cc-chat-status { font-size: 9px; color: rgba(80,200,130,0.7); }
.cc-icon-btn { background: none; border: none; cursor: pointer; padding: 2px; display: flex; }
.cc-icon-btn svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.3); }
.cc-icon-btn:hover svg { fill: rgba(255,255,255,0.7); }
.cc-msgs { height: 240px; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.cc-msgs.cc-minimized { display: none; }
.cc-msg { display: flex; flex-direction: column; max-width: 80%; }
.cc-mine { align-self: flex-end; align-items: flex-end; }
.cc-theirs { align-self: flex-start; }
.cc-msg-b { padding: 8px 12px; font-size: 13px; line-height: 1.6; }
.cc-mine .cc-msg-b { background: rgba(125,249,255,0.15); border: 1px solid rgba(125,249,255,0.2); color: rgba(255,255,255,0.9); border-radius: 10px 10px 2px 10px; }
.cc-theirs .cc-msg-b { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.75); border-radius: 10px 10px 10px 2px; }
.cc-msg-t { font-size: 8px; color: rgba(255,255,255,0.2); margin-top: 3px; padding: 0 2px; }
.cc-typing { display: flex; gap: 4px; align-items: center; padding: 8px 12px; }
.cc-typing-dot { width: 5px; height: 5px; background: rgba(255,255,255,0.3); border-radius: 50%; animation: ccTyping 1.2s infinite; }
.cc-typing-dot:nth-child(2) { animation-delay: .2s; }
.cc-typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes ccTyping { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-4px)} }
.cc-input-row { border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: var(--dark4); }
.cc-input-row.cc-minimized { display: none; }
.cc-msg-inp { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 7px 10px; color: #fff; font-size: 13px; font-family: var(--sans); outline: none; }
.cc-msg-inp::placeholder { color: rgba(255,255,255,0.2); }
.cc-send-btn { width: 30px; height: 30px; background: #7DF9FF; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.cc-send-btn svg { width: 13px; height: 13px; fill: #000; }
/* ── BLIND CONNECT FAB ───────────────────────────────────────── */
.cc-blind-fab { background: #fff; }
.cc-blind-fab svg { fill: #000; }
.cc-blind-dot { position:absolute; top:-2px; right:-2px; width:10px; height:10px; background:#7DF9FF; border-radius:50%; border:2px solid #080808; }
#cc-blind-panel { background:#19191B; border:1px solid rgba(125,249,255,0.2); width:300px; }
.cc-blind-header { background:#19191B; padding:12px 14px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid rgba(255,255,255,0.06); }
.cc-blind-header span { font-size:9px; letter-spacing:.16em; text-transform:uppercase; color:rgba(125,249,255,0.6); }
#cc-blind-body { padding:16px 14px; display:flex; flex-direction:column; gap:12px; }
.cc-blind-person { display:flex; align-items:center; gap:10px; }
.cc-blind-av { width:38px; height:38px; border-radius:50%; background:rgba(125,249,255,0.12); display:flex; align-items:center; justify-content:center; font-size:12px; color:#7DF9FF; font-weight:500; overflow:hidden; flex-shrink:0; }
.cc-blind-name { font-size:15px; color:#fff; }
.cc-blind-label { font-size:8px; letter-spacing:.14em; text-transform:uppercase; color:rgba(125,249,255,0.5); margin-bottom:4px; }
.cc-blind-val { font-size:13px; color:rgba(255,255,255,0.8); line-height:1.7; }
.cc-blind-loc { font-size:13px; color:#7DF9FF; }
.cc-blind-meta { font-size:9px; color:rgba(255,255,255,0.2); margin-top:4px; }
/* ── VISITOR BLUR ────────────────────────────────────────────── */
.event-card.blurred { filter: blur(5px); pointer-events: none; user-select: none; }
.ts-card.blurred { filter: blur(5px); pointer-events: none; user-select: none; }
.trip-layout.blurred .trip-info { filter: blur(5px); pointer-events: none; user-select: none; }
.trip-layout.blurred .trip-gallery { filter: blur(5px); pointer-events: none; user-select: none; }
.visitor-cta { background: rgba(125,249,255,0.06); border: 1px solid rgba(125,249,255,0.2); padding: 20px 32px; text-align: center; margin: 24px 48px; }
.visitor-cta-title { font-family: var(--serif); font-size: 20px; font-weight: 300; color: #fff; margin-bottom: 6px; }
.visitor-cta-sub { font-size: 14px; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.visitor-cta-btn { background: #7DF9FF; border: none; color: #000; padding: 10px 24px; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); }
.pw-eye-show svg, .pw-eye-hide svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.6); }

/* ── MEMBERSHIP GOLD CARD — stays gold ─────────────────────── */
.mem-cc-gold { background: linear-gradient(135deg,#a07828 0%,#e2c060 45%,#b08930 100%) !important; }
.mem-fc-gold { background: rgba(201,168,76,0.1) !important; border: 1px solid rgba(201,168,76,0.25) !important; }
.mem-fc-gold svg { fill: rgba(201,168,76,0.8) !important; }
.mb-gold { background: #c9a84c !important; color: #000 !important; }
.mb-gold:hover { background: #e2c97e !important; }
.mb-gold-out { background: transparent !important; border: 1px solid #c9a84c !important; color: #c9a84c !important; }
.mb-gold-out:hover { background: rgba(201,168,76,0.1) !important; }
.mem-dot-gold.on { background: #c9a84c !important; }
.mem-tier-gold { color: rgba(201,168,76,0.6) !important; }
.mem-name-gold { color: #c9a84c !important; }
.mem-feat-gold .mem-feat-check.mem-fc-gold { background: rgba(201,168,76,0.1) !important; border-color: rgba(201,168,76,0.25) !important; }
.mem-feat-gold .mem-feat-check.mem-fc-gold svg { fill: rgba(201,168,76,0.8) !important; }

/* ── BRANDS SLIDER (admin) ───────────────────────────────────── */
.br-slider { display:flex; gap:12px; overflow-x:auto; padding-bottom:10px; min-height:140px; align-items:flex-start; }
.br-card { display:flex; flex-direction:column; align-items:center; background:#161618; border:1px solid rgba(255,255,255,0.08); width:160px; flex-shrink:0; cursor:grab; user-select:none; transition:border-color .2s; }
.br-card:hover { border-color:rgba(125,249,255,0.25); }
.br-card.br-dragging { opacity:.35; border-style:dashed; border-color:rgba(125,249,255,0.4); }
.br-drag { font-size:14px; color:rgba(255,255,255,0.15); padding:6px 0 2px; line-height:1; cursor:grab; }
.br-img { flex:1; display:flex; align-items:center; justify-content:center; padding:12px 14px; min-height:68px; }
.br-img img { max-height:48px; max-width:130px; object-fit:contain; opacity:.8; pointer-events:none; display:block; }
.br-replace { position:absolute; inset:0; display:none; align-items:center; justify-content:center; background:rgba(0,0,0,0.55); cursor:pointer; font-size:9px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:#7DF9FF; font-family:var(--sans); }
.br-img:hover .br-replace { display:flex; }
.br-actions { display:flex; align-items:center; justify-content:space-between; width:100%; border-top:1px solid rgba(255,255,255,0.06); padding:6px 8px; gap:4px; }
.br-btn { background:transparent; border:1px solid rgba(255,255,255,0.1); color:rgba(255,255,255,0.45); font-size:14px; line-height:1; width:26px; height:26px; cursor:pointer; display:flex; align-items:center; justify-content:center; padding:0; transition:all .15s; }
.br-btn:hover:not([disabled]) { border-color:rgba(255,255,255,0.35); color:#fff; }
.br-btn[disabled] { opacity:.2; cursor:default; }
.br-btn.br-del { color:rgba(220,80,80,0.6); border-color:rgba(220,80,80,0.2); flex:1; margin:0 4px; font-size:16px; }
.br-btn.br-del:hover { background:rgba(220,80,80,0.12); border-color:rgba(220,80,80,0.5); color:rgba(220,80,80,0.9); }
.br-upload-row { display:flex; align-items:center; gap:12px; margin-top:20px; flex-wrap:wrap; }
.br-upload-label { font-size:9px; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,0.25); }

/* ── TRIPS LIST VIEW ─────────────────────────────────────────── */
.tl-filter-bar { display:flex; flex-direction:row; flex-wrap:wrap; align-items:center; gap:8px; padding:0 48px 40px; }
.tl-filter-row { display:flex; align-items:center; flex-wrap:wrap; gap:8px; }
.tl-filter-lbl { font-size:8px; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,0.2); flex-shrink:0; margin-right:2px; }
.tl-filter-sep { width:1px; height:18px; background:rgba(255,255,255,0.1); flex-shrink:0; margin:0 6px; }
.tl-chip { background:transparent; border:1px solid rgba(255,255,255,0.12); color:rgba(255,255,255,0.4); font-size:9px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; font-family:var(--sans); padding:7px 16px; cursor:pointer; transition:all .2s; }
.tl-chip:hover { border-color:rgba(255,255,255,0.28); color:rgba(255,255,255,0.7); }
.tl-chip.on { background:rgba(125,249,255,0.1); border-color:rgba(125,249,255,0.5); color:#7DF9FF; }
.tl-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; padding:0 48px 80px; }
@media(max-width:1100px) { .tl-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:640px) { .tl-grid { grid-template-columns:1fr; padding:0 16px 60px; } .tl-filter-bar { padding:0 16px 32px; } }
.tl-card { background:#111113; border:1px solid rgba(255,255,255,0.06); cursor:pointer; transition:border-color .25s, transform .25s; display:flex; flex-direction:column; }
.tl-card:hover { border-color:rgba(125,249,255,0.3); transform:translateY(-2px); }
.tl-card-img { position:relative; aspect-ratio:16/10; overflow:hidden; background:#0d0d0d; }
.tl-card-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s; }
.tl-card:hover .tl-card-img img { transform:scale(1.04); }
.tl-card-no-img { width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
.tl-card-no-img svg { width:40px; height:40px; fill:rgba(255,255,255,0.1); }
.tl-card-act-badge { position:absolute; bottom:14px; right:14px; background:rgba(0,0,0,0.65); border:1px solid rgba(255,255,255,0.15); color:rgba(255,255,255,0.5); font-size:8px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; font-family:var(--sans); padding:3px 9px; backdrop-filter:blur(4px); }
.tl-card-tag { position:absolute; top:14px; left:14px; background:rgba(0,0,0,0.7); border:1px solid rgba(125,249,255,0.3); color:#7DF9FF; font-size:8px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; font-family:var(--sans); padding:4px 10px; backdrop-filter:blur(4px); }
.tl-card-body { padding:22px 20px 20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.tl-card-title { font-family:var(--serif); font-size:20px; font-weight:300; color:#fff; line-height:1.25; }
.tl-card-dates { display:flex; align-items:center; gap:7px; font-size:11px; color:rgba(201,168,76,0.65); }
.tl-card-dates svg { width:12px; height:12px; fill:rgba(201,168,76,0.5); flex-shrink:0; }
.tl-card-meta { display:flex; align-items:center; gap:6px; font-size:10px; color:rgba(255,255,255,0.35); }
.tl-card-meta svg { width:10px; height:10px; fill:rgba(255,255,255,0.25); flex-shrink:0; }
.tl-meta-sep { width:1px; height:10px; background:rgba(255,255,255,0.12); flex-shrink:0; }
.tl-card-footer { display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:12px; border-top:1px solid rgba(255,255,255,0.06); }
.tl-card-spots { font-size:10px; color:rgba(255,255,255,0.35); letter-spacing:.06em; }
.tl-spots-low { color:rgba(255,160,60,0.75); }
.tl-card-btn { background:transparent; border:1px solid rgba(255,255,255,0.18); color:rgba(255,255,255,0.65); font-size:8px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; font-family:var(--sans); padding:7px 14px; cursor:pointer; transition:all .2s; }
.tl-card:hover .tl-card-btn { background:rgba(125,249,255,0.1); border-color:rgba(125,249,255,0.4); color:#7DF9FF; }
/* Back bar */
.tl-back-bar { padding:28px 48px 0; }
.tl-back-btn { display:inline-flex; align-items:center; gap:8px; background:transparent; border:none; color:rgba(255,255,255,0.4); font-size:9px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; font-family:var(--sans); cursor:pointer; padding:0; transition:color .2s; }
.tl-back-btn svg { width:16px; height:16px; fill:currentColor; }
.tl-back-btn:hover { color:rgba(255,255,255,0.75); }
@media(max-width:640px) { .tl-back-bar { padding:20px 16px 0; } }

/* ── FOOTER NEWSLETTER ──────────────────────────────────────── */
.footer-nl-desc { font-size:11px; color:rgba(255,255,255,0.28); line-height:1.6; margin-bottom:14px; }
.footer-nl-form { display:flex; align-items:stretch; border:1px solid rgba(255,255,255,0.1); }
.footer-nl-inp { flex:1; background:transparent; border:none; padding:9px 12px; font-size:11px; color:rgba(255,255,255,0.8); outline:none; font-family:var(--sans); min-width:0; }
.footer-nl-inp::placeholder { color:rgba(255,255,255,0.2); }
.footer-nl-btn { background:transparent; border:none; border-left:1px solid rgba(255,255,255,0.1); padding:9px 14px; color:rgba(255,255,255,0.4); font-size:14px; cursor:pointer; transition:all .2s; font-family:var(--sans); flex-shrink:0; }
.footer-nl-btn:hover { background:rgba(255,255,255,0.06); color:#fff; }

/* ── NEWSLETTER POPUP ───────────────────────────────────────── */
.nl-popup-box { background:#0d0d0d; border:1px solid rgba(255,255,255,0.1); padding:40px 36px; max-width:380px; width:90%; position:relative; text-align:center; }
.nl-popup-close { position:absolute; top:14px; right:16px; background:none; border:none; color:rgba(255,255,255,0.3); font-size:16px; cursor:pointer; line-height:1; padding:4px; }
.nl-popup-close:hover { color:#fff; }
.nl-popup-eyebrow { font-size:8px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:rgba(201,168,76,0.5); margin-bottom:14px; }
.nl-popup-title { font-family:var(--serif); font-size:26px; font-weight:300; color:#fff; margin-bottom:10px; line-height:1.2; }
.nl-popup-desc { font-size:15px; color:rgba(255,255,255,0.55); line-height:1.7; margin-bottom:24px; }
.nl-popup-form { display:flex; border:1px solid rgba(255,255,255,0.1); margin-bottom:14px; }
.nl-popup-inp { flex:1; background:transparent; border:none; padding:11px 14px; font-size:12px; color:rgba(255,255,255,0.85); outline:none; font-family:var(--sans); min-width:0; }
.nl-popup-inp::placeholder { color:rgba(255,255,255,0.2); }
.nl-popup-btn { background:var(--gold); border:none; color:#000; padding:11px 18px; font-size:9px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; font-family:var(--sans); cursor:pointer; flex-shrink:0; transition:opacity .2s; }
.nl-popup-btn:hover { opacity:.85; }
.nl-popup-skip { font-size:10px; color:rgba(255,255,255,0.2); cursor:pointer; letter-spacing:.06em; }
.nl-popup-skip:hover { color:rgba(255,255,255,0.45); }

/* ── TRIP SUGGESTIONS ───────────────────────────────────────── */
.ts-section { background:#080808; border-top:1px solid rgba(255,255,255,0.05); padding:80px 48px; }
.ts-inner { max-width:700px; margin:0 auto; }
.ts-eyebrow { font-size:8px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:rgba(201,168,76,0.5); margin-bottom:14px; }
.ts-h2 { font-family:var(--serif); font-size:32px; font-weight:300; color:#fff; margin-bottom:12px; line-height:1.2; }
.ts-sub { font-size:13px; color:rgba(255,255,255,0.35); line-height:1.7; margin-bottom:36px; max-width:520px; }
.ts-form {}
.ts-fields { display:grid; grid-template-columns:1fr 1fr; gap:0 32px; margin-bottom:24px; }
.ts-field-full { grid-column:1/-1; }
.ts-field-group { display:flex; flex-direction:column; margin-bottom:20px; }
.ts-label { font-size:8px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,0.25); margin-bottom:8px; }
.ts-inp { background:transparent; border:none; border-bottom:1px solid rgba(255,255,255,0.08); padding:9px 0; font-size:13px; color:rgba(255,255,255,0.85); outline:none; font-family:var(--sans); transition:border-color .25s; width:100%; }
.ts-inp:focus { border-bottom-color:rgba(201,168,76,0.4); }
.ts-inp::placeholder { color:rgba(255,255,255,0.18); }
.ts-textarea { resize:none; min-height:70px; line-height:1.6; }
.ts-submit-btn { background:transparent; border:1px solid rgba(201,168,76,0.5); color:rgba(201,168,76,0.85); font-size:9px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; font-family:var(--sans); padding:12px 28px; cursor:pointer; transition:all .2s; }
.ts-submit-btn:hover { background:rgba(201,168,76,0.08); border-color:var(--gold); color:var(--gold); }
.ts-success { text-align:center; padding:32px 0; }
.ts-success svg { width:40px; height:40px; fill:rgba(201,168,76,0.6); margin-bottom:16px; }
.ts-success-title { font-family:var(--serif); font-size:22px; font-weight:300; color:#fff; margin-bottom:8px; }
.ts-success-sub { font-size:12px; color:rgba(255,255,255,0.3); }
@media(max-width:640px) { .ts-section { padding:60px 20px; } .ts-h2 { font-size:26px; } .ts-fields { grid-template-columns:1fr; } }
