:root{
  --bg:#05060a;
  --bg2:#070a12;
  --fg:#e9eefc;
  --muted:#a7b0c7;
  --glass:rgba(10,12,18,.55);
  --stroke:rgba(255,255,255,.10);
  --shadow:0 14px 40px rgba(0,0,0,.45);
  --radius:18px;
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:radial-gradient(1200px 700px at 20% 10%, #0b1230 0%, var(--bg) 55%, #020208 100%);
  color:var(--fg);
}

/* ===== TOPBAR ===== */
.topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  padding:14px 18px 10px;
  transition:background .25s ease, backdrop-filter .25s ease, border-color .25s ease, transform .25s ease, padding .25s ease;
  border-bottom:1px solid transparent;
}

.topbar.is-top{
  background:transparent;
}

.topbar.is-scrolled{
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.15);
  padding:0 8px;
}

.topbar__inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  max-width:1400px;
  margin:0 auto;
  padding:0 18px;
}

/* ===== NAV BUTTONS ===== */
.navbtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:fit-content;
  white-space:nowrap;
  color:var(--fg);
  text-decoration:none;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.22);
  padding:10px 12px;
  border-radius:999px;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  cursor:pointer;
  min-height:44px;
  min-width:44px;
}

.navbtn--right{
  justify-self:end;
}

.topbar__actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}

.navbtn--account{
  justify-content:center;
}

.navbtn__icon{
  font-size:18px;
  opacity:.95;
}

.navbtn__text{
  font-weight:650;
  letter-spacing:.2px;
  font-size:14px;
}

/* ===== BRAND ===== */
.brand{
  position:relative;
  justify-self:center;
  display:grid;
  place-items:center;
  padding:6px 15px;
  border-radius:999px;
  text-decoration:none;
}

.brand__logo{
  grid-area:1 / 1;
  height:100px;
  width:auto;
  display:block;
  transition:opacity .25s ease, transform .35s ease;
  transform-origin:center;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.45));
  position:relative;
  z-index:1;
}

.topbar.is-top .brand__logo--full{
  opacity:1;
  transform:translateY(0) scale(1);
}

.topbar.is-top .brand__logo--wordmark{
  opacity:0;
  transform:translateY(4px) scale(.90);
}

.topbar.is-scrolled .brand__logo--full{
  opacity:0;
  transform:translateY(-4px) scale(.90);
}

.topbar.is-scrolled .brand__logo--wordmark{
  opacity:1;
  transform:translateY(0) scale(1.18);
}

.topbar__mobile-greeting{
  display:none;
}

/* ===== DRAWER ===== */
.drawer{
  position:fixed;
  inset:0;
  z-index:200;
  pointer-events:none;
}

.drawer.is-open{
  pointer-events:auto;
}

.drawer__backdrop{
  position:absolute;
  inset:0;
  border:0;
  background:transparent;
  opacity:1;
  cursor:pointer;
  z-index:1;
}

.drawer__panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(380px, 92vw);
  background:rgba(10,12,18,.92);
  border-left:1px solid rgba(255,255,255,.10);
  transform:translateX(110%);
  transition:transform .25s ease;
  box-shadow:0 18px 60px rgba(0,0,0,.55);
  padding:18px;
  z-index:2;
}

.drawer.is-open .drawer__panel{
  transform:translateX(0);
}

.drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:10px;
  border-bottom:1px solid var(--stroke);
}

.drawer__title{
  font-weight:800;
  letter-spacing:.4px;
}

.drawer__close{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);
  color:var(--fg);
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}

.drawer__nav{
  display:flex;
  flex-direction:column;
  padding:14px 0;
  gap:10px;
}

.drawer__nav a{
  color:var(--fg);
  text-decoration:none;
  padding:12px;
  border-radius:14px;
  border:1px solid transparent;
  background:rgba(0,0,0,.22);
}

.drawer__nav a:hover{
  border-color:var(--stroke);
}

.drawer__foot{
  display:flex;
  gap:10px;
  padding-top:10px;
  border-top:1px solid var(--stroke);
}

.pill{
  color:var(--fg);
  text-decoration:none;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.22);
}

/* ===== HERO ===== */
.hero{
  position:relative;
  padding-top:115px;
  min-height:100vh;
  display:flex;
  align-items:flex-start;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:rgba(0,0,0,.55);
}

.hero__bg{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(0,229,255,.12), transparent 55%),
    radial-gradient(800px 500px at 75% 35%, rgba(255,0,204,.10), transparent 55%),
    radial-gradient(900px 700px at 50% 110%, rgba(124,255,0,.10), transparent 55%);
  pointer-events:none;
}

.hero__content{
  position:relative;
  z-index:3;
  max-width:1200px;
  margin:0 auto;
  padding:34px 18px 36px;
}

.kicker{
  color:var(--muted);
  letter-spacing:.8px;
  text-transform:uppercase;
  font-weight:700;
  font-size:12px;
  margin:0 0 10px;
}

.headline{
  margin:0 0 10px;
  font-size:clamp(34px, 5vw, 64px);
  line-height:1.03;
  letter-spacing:-1px;
}

.sub{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  max-width:64ch;
}

.cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
  margin-bottom:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid var(--stroke);
  color:var(--fg);
  cursor:pointer;
}

.btn--primary{
  background:rgba(255,255,255,.08);
}

.btn--ghost{
  background:transparent;
}

.hero__cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
  margin-top:14px;
}

/* ===== GENERIC CARDS ===== */
.card{
  position:relative;
  padding:18px;
  border-radius:var(--radius);
  background:rgba(0,0,0,.22);
  border:1px solid var(--stroke);
  overflow:hidden;
}

.rgb-card::before{
  content:"";
  position:absolute;
  inset:-4px;
  background:conic-gradient(
    from 0deg,
    #ff2d95 0%,
    #7c3cff 33%,
    #00e5ff 66%,
    #ff2d95 100%
  );
  filter:blur(22px);
  opacity:.9;
  animation:spin 8s linear infinite;
}

.rgb-card::after{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:calc(var(--radius) - 2px);
  background:rgba(6,7,12,.80);
  border:1px solid rgba(255,255,255,.06);
}

.rgb-card > *{
  position:relative;
  z-index:1;
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}

/* ===== HOME LINK CARD ===== */
.home-link-card{
  display:block;
  text-decoration:none;
  color:var(--fg);
  transition:transform .25s ease, border-color .25s ease;
}

.home-link-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.16);
}

.home-offers{
  overflow:hidden;
}

/* ===== SECTIONS ===== */
.section{
  max-width:1600px;
  margin:0 auto;
  padding:70px 18px;
  border-top:1px solid rgba(255,255,255,.06);
}

.section-head{
  margin-bottom:24px;
}

.section-head h2{
  margin:0;
  font-size:clamp(24px, 3.2vw, 38px);
}

.footer{
  max-width:1200px;
  margin:0 auto;
  padding:30px 18px 60px;
  color:var(--muted);
}

/* ===== HEX BACKGROUND ===== */
.hex-bg{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:.88;
  -webkit-mask-image:radial-gradient(circle at 50% 45%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  mask-image:radial-gradient(circle at 50% 45%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.hex-bg__svg{
  width:100%;
  height:100%;
  display:block;
}

.hex-line{
  fill:none;
  stroke-width:6;
  stroke-linejoin:round;
  stroke-linecap:round;
  opacity:.92;
  stroke:hsl(calc(var(--i) * 35), 100%, 60%);
  animation:hueShift 12s linear infinite;
  filter:drop-shadow(0 0 10px rgba(255,255,255,.25));
}

.hex-glow{
  fill:none;
  stroke-width:12;
  stroke-linejoin:round;
  stroke-linecap:round;
  opacity:.22;
  stroke:hsl(calc(var(--i) * 35), 100%, 60%);
  filter:blur(1.4px);
  animation:hueShift 8s linear infinite;
}

@keyframes hueShift{
  from{ filter:hue-rotate(0deg) drop-shadow(0 0 10px rgba(255,255,255,.25)); }
  to{ filter:hue-rotate(360deg) drop-shadow(0 0 10px rgba(255,255,255,.25)); }
}

/* ===== EVENT BANNER ===== */
.event-banner{
  position:relative;
  display:block;
  max-width:900px;
  margin:0 auto;
  padding:3px;
  border-radius:22px;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(90deg, #ff00cc, #00e5ff, #7CFF00, #ffb300, #ff00cc);
  background-size:300% 100%;
  animation:eventBorderMove 5s linear infinite;
  box-shadow:
    0 0 12px rgba(255,0,204,.35),
    0 0 20px rgba(0,229,255,.25),
    0 0 28px rgba(124,255,0,.18);
  overflow:hidden;
}

.event-banner-img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  border-radius:19px;
  opacity:.95;
  transition:transform .4s ease, opacity .4s ease;
}

.event-banner-overlay{
  position:absolute;
  inset:3px;
  z-index:2;
  border-radius:19px;
  background:rgba(0,0,0,0);
  transition:background .35s ease;
}

.event-banner-content{
  position:absolute;
  left:30px;
  bottom:30px;
  z-index:3;
}

.event-banner:hover .event-banner-overlay{
  background:rgba(0,0,0,.38);
}

.event-banner:hover .event-banner-img{
  transform:scale(1.03);
  opacity:.72;
}

@keyframes eventBorderMove{
  0%{ background-position:0% 50%; }
  100%{ background-position:300% 50%; }
}

/* ===== COUNTDOWN ===== */
.event-countdown-bar{
  position:relative;
  z-index:3;
  max-width:1200px;
  margin:4px auto 14px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(0,0,0,.30);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.event-countdown-text{
  font-size:18px;
  font-weight:700;
  letter-spacing:.2px;
}

.event-countdown-timer{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.count-box{
  min-width:88px;
  padding:10px 12px;
  text-align:center;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.count-box span{
  display:block;
  font-size:28px;
  font-weight:800;
  line-height:1;
  margin-bottom:6px;
}

.count-box small{
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.6px;
}

/* ===== OPEN/CLOSED STRIP ===== */
.open-status-strip{
  position:relative;
  overflow:hidden;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
}

.open-status-strip__track{
  display:flex;
  gap:80px;
  width:max-content;
  white-space:nowrap;
  font-weight:700;
  animation:statusScroll 24s linear infinite;
}

.open-status-strip.is-open{
  background:rgba(12,80,32,.24);
}

.open-status-strip.is-closed{
  background:rgba(110,18,18,.24);
}

.open-status-strip.is-open #shopStatusText,
.open-status-strip.is-open #shopStatusTextClone,
.open-status-strip.is-open #shopStatusTextClone2{
  color:#8cffb2;
}

.open-status-strip.is-closed #shopStatusText,
.open-status-strip.is-closed #shopStatusTextClone,
.open-status-strip.is-closed #shopStatusTextClone2{
  color:#ff9d9d;
}

@keyframes statusScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ===== OFFER CARDS ===== */
.offer-price{
  display:flex;
  gap:10px;
  align-items:center;
}

.old-price{
  text-decoration:line-through;
  color:rgba(255,255,255,.5);
}

.new-price{
  font-size:20px;
  font-weight:800;
  color:#7CFF00;
}

.offer-card-flip{
  perspective:1400px;
  text-decoration:none;
  color:var(--fg);
  display:block;
}

.offer-card-flip:link,
.offer-card-flip:visited,
.offer-card-flip:hover,
.offer-card-flip:active{
  color:var(--fg);
  text-decoration:none;
}

.offer-card-flip h3,
.offer-card-flip p,
.offer-card-flip small,
.offer-card-flip span{
  text-decoration:none;
}

.offer-card-flip h3,
.offer-card-flip p,
.offer-card-flip small,
.offer-card-flip .offer-badge{
  color:var(--fg);
}

.offer-card-flip .old-price{
  color:rgba(255,255,255,.5) !important;
  text-decoration:line-through;
}

.offer-card-flip .new-price{
  color:#7CFF00 !important;
  font-weight:800;
}

.offers-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(260px, 320px));
  justify-content:center;
  max-width:1100px;
  margin:28px auto 0;
  gap:26px;
}

.offer-card-inner{
  position:relative;
  width:100%;
  height:220px;
  transform-style:preserve-3d;
  transition:transform .7s cubic-bezier(.22,.61,.36,1);
}

.offer-card-flip.is-flipped .offer-card-inner{
  transform:rotateY(180deg);
}

@media (hover:hover) and (pointer:fine){
  .offer-card-flip:hover .offer-card-inner{
    transform:rotateY(180deg);
  }
}

.offer-card-front,
.offer-card-back{
  position:absolute;
  inset:0;
  border-radius:18px;
  backface-visibility:hidden;
  overflow:hidden;
}

.offer-card-front{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:28px 30px 24px;
}

.offer-card-front::before{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:20px;
  background:linear-gradient(
    90deg,
    #ff4d6d,
    #ff7a18,
    #ffd166,
    #7b61ff,
    #4cc9f0,
    #00c2a8,
    #5dd39e,
    #f72585,
    #ff9f1c,
    #ff4d6d
  );
  background-size:420% 100%;
  animation:rgbMove 10s linear infinite;
  filter:blur(12px);
  opacity:.86;
  z-index:0;
}

.offer-card-front::after{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(247,37,133,.22), transparent 36%),
    radial-gradient(circle at 100% 0%, rgba(76,201,240,.22), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(255,122,24,.18), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(123,97,255,.18), transparent 40%),
    linear-gradient(
      90deg,
      rgba(255,77,109,.14),
      rgba(255,209,102,.16),
      rgba(76,201,240,.16),
      rgba(123,97,255,.15),
      rgba(0,194,168,.13),
      rgba(255,77,109,.14)
    ),
    linear-gradient(180deg, rgba(18,22,34,.88), rgba(8,10,18,.92));
  background-size:240% 240%, 240% 240%, 240% 240%, 240% 240%, 300% 100%, 100% 100%;
  animation:offerInnerFlow 12s linear infinite;
  border:1px solid rgba(255,255,255,.06);
  z-index:1;
}

.offer-card-front > *{
  position:relative;
  z-index:2;
}

.offer-card-front__image{
  display:none;
}

.offer-card-front__body{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
  padding:0;
}

.offer-card-front__body h3{
  margin:0 0 10px;
  line-height:1.2;
  font-size:22px;
}

.offer-card-front__body p{
  margin:0 0 12px;
  line-height:1.42;
  font-size:14px;
}

.offer-card-front__body small{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.35;
  font-size:12px;
}

.offer-card-front__body .offer-price{
  margin-top:auto;
}

.offer-card-front__body .btn{
  margin-top:14px;
  align-self:flex-start;
}

.offer-card-back{
  transform:rotateY(180deg);
  display:flex;
  align-items:center;
  justify-content:center;
}

.offer-card-back::before{
  content:"";
  position:absolute;
  inset:-4px;
  background:linear-gradient(
    90deg,
    #ff4d6d,
    #ff7a18,
    #ffd166,
    #7b61ff,
    #4cc9f0,
    #00c2a8,
    #5dd39e,
    #f72585,
    #ff9f1c,
    #ff4d6d
  );
  background-size:420% 100%;
  animation:rgbMove 10s linear infinite;
  filter:blur(18px);
  opacity:.82;
}

.offer-card-back img{
  position:relative;
  z-index:2;
  max-width:75%;
  max-height:75%;
  transition:transform .5s ease, filter .5s ease;
}

.offer-card-flip:hover .offer-card-back img{
  transform:scale(1.08);
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,.4))
    drop-shadow(0 0 25px rgba(0,229,255,.5))
    drop-shadow(0 0 35px rgba(255,0,204,.4));
}

.offer-badge{
  display:inline-flex;
  align-self:flex-start;
  margin-bottom:10px;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

@keyframes rgbMove{
  0%{ background-position:0% 50%; }
  100%{ background-position:300% 50%; }
}

@keyframes offerInnerFlow{
  0%{
    background-position:
      0% 0%,
      100% 0%,
      100% 100%,
      0% 100%,
      0% 50%,
      0% 0%;
  }
  100%{
    background-position:
      100% 100%,
      0% 100%,
      0% 0%,
      100% 0%,
      300% 50%,
      0% 0%;
  }
}

/* ===== WORKS CAROUSEL ===== */
.works-carousel{
  overflow:hidden;
  position:relative;
}

.works-track{
  display:flex;
  gap:18px;
  width:max-content;
  animation:worksScroll 64s linear infinite;
}

.works-track img{
  width:280px;
  height:210px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  flex:0 0 auto;
}

@keyframes worksScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

.section-cta{
  display:flex;
  justify-content:center;
  margin-top:28px;
}

.section-cta--left{
  justify-content:flex-start;
  gap:12px;
  flex-wrap:wrap;
}

/* ===== CONTACT AREA ===== */
.contact-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) 360px;
  gap:18px;
  max-width:980px;
  margin:18px auto 0;
  align-items:start;
}

.contact-map{
  padding:0;
  overflow:hidden;
}

.contact-map iframe{
  width:100%;
  height:260px;
  border:0;
  display:block;
}

.contact-map-link{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:180px;
  gap:14px;
  padding:28px 30px;
}

.contact-map-link h3{
  margin:0 0 6px;
  font-size:24px;
}

.contact-map-link p{
  margin:0;
  font-size:18px;
  line-height:1.45;
  max-width:760px;
}

.contact-hours{
  max-width:360px;
}

.contact-hours h3{
  margin-top:0;
  margin-bottom:10px;
  font-size:20px;
}

.contact-hours .hours-calendar{
  padding:0;
  overflow:hidden;
}

.contact-hours .hours-calendar__head,
.contact-hours .hours-calendar__row{
  display:grid;
  grid-template-columns:repeat(7, minmax(44px, 1fr));
}

.contact-hours .hours-calendar__day,
.contact-hours .hours-calendar__cell{
  padding:6px 4px;
  border-right:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  text-align:center;
}

.contact-hours .hours-calendar__day{
  background:rgba(255,255,255,.04);
  font-weight:1000;
}

.contact-hours .hours-calendar__cell{
  line-height:1.25;
}

.contact-hours .hours-calendar__cell.is-store{
  color:#ffe08a;
}

.contact-hours .hours-calendar__cell.is-open{
  color:#8cffb2;
}

.contact-hours .hours-calendar__cell.is-closed{
  color:var(--muted);
}

.contact-hours .hours-calendar__head > *:last-child,
.contact-hours .hours-calendar__row > *:last-child{
  border-right:0;
}

.contact-hours .hours-calendar__row:last-child > *{
  border-bottom:0;
}

.hours-note{
  margin-top:8px;
  font-size:11px;
  color:var(--muted);
  line-height:1.35;
}

/* ===== CONTACT LINKS ===== */
.contact-links{
  position:relative;
  text-align:center;
  overflow:hidden;
}

.contact-socials{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(5, 200px);
  justify-content:center;
  gap:12px;
  margin-top:14px;
}

.social-card{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:180px;
  min-height:58px;
  padding:8px 12px;
  text-align:center;
  text-decoration:none;
  color:var(--fg);
  transition:transform .22s ease, border-color .22s ease;
}

.social-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.18);
}

.social-card span{
  position:relative;
  z-index:2;
  font-weight:700;
  letter-spacing:.2px;
  font-size:14px;
}

.social-card__logo{
  display:none;
  width:24px;
  height:24px;
  object-fit:contain;
  position:relative;
  z-index:2;
}

.social-card__text{
  position:relative;
  z-index:2;
}

.social-card--phone span{ color:#9bd7ff; }
.social-card--instagram span{ color:#ff6bc4; }
.social-card--whatsapp span{ color:#4be08f; }
.social-card--mail span{ color:#ff7a7a; }
.social-card--tiktok span{ color:#c78cff; }

/* ===== HONEYCOMB SECTION ===== */
.section-honeycomb{
  position:relative;
  overflow:hidden;
}

.section-honeycomb .hex-bg{
  position:absolute;
  inset:0;
  z-index:0;
  opacity:.35;
}

.section-honeycomb > *{
  position:relative;
  z-index:2;
}

/* ===== INTERNAL PAGES ===== */
.page-top{
  padding-top:140px;
}

.is-hidden{
  display:none;
}

.menu-greeting{
  display:inline-flex;
  align-items:center;
  padding:0 2px;
  font-size:14px;
  font-weight:700;
  color:var(--fg);
  opacity:.9;
  white-space:nowrap;
}

/* ===== ACCOUNT PAGE ===== */
.account-page{
  min-height:100vh;
  padding:140px 18px 60px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  overflow:visible;
}

.account-hero{
  text-align:center;
  margin-bottom:30px;
  max-width:760px;
}

.account-hero h1{
  margin:0 0 10px;
  font-size:clamp(34px, 5vw, 56px);
  line-height:1.05;
  letter-spacing:-1px;
  background:linear-gradient(90deg, #ffffff, #00e5ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.account-hero p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.5;
}

.account-container{
  width:100%;
  display:flex;
  justify-content:center;
  position:relative;
  overflow:visible;
  padding:0 10px;
}

.account-box{
  position:relative;
  z-index:2;
  isolation:isolate;
  width:100%;
  max-width:560px;
  padding:30px 30px 26px;
  border-radius:26px;
  background:linear-gradient(90deg, #00e5ff, #7cff00, #ff00cc, #00e5ff);
  background-size:300% 100%;
  animation:accountBorderMove 6s linear infinite;
  box-shadow:
    0 0 14px rgba(0,229,255,.18),
    0 0 24px rgba(124,255,0,.14),
    0 0 32px rgba(255,0,204,.16),
    0 24px 60px rgba(0,0,0,.45);
  overflow:hidden;
}

.account-box::after{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:24px;
  background:rgba(12,14,22,.94);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.08);
  z-index:0;
}

.account-box > *{
  position:relative;
  z-index:1;
}

@keyframes accountBorderMove{
  0%{ background-position:0% 50%; }
  100%{ background-position:300% 50%; }
}

.account-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  margin-bottom:24px;
  padding:4px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.account-tab{
  min-height:48px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:rgba(255,255,255,.72);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.account-tab.is-active{
  background:linear-gradient(90deg, #00e5ff, #ff00cc);
  color:#000;
  box-shadow:0 6px 20px rgba(0,229,255,.25);
}

.account-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.account-form label{
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,.9);
  margin-top:2px;
}

.account-form input{
  width:100%;
  min-height:52px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:var(--fg);
  outline:none;
  font-size:15px;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.account-form input::placeholder{
  color:rgba(255,255,255,.42);
}

.account-form input:focus{
  border-color:rgba(0,229,255,.35);
  background:rgba(255,255,255,.07);
  box-shadow:0 0 0 3px rgba(0,229,255,.08);
}

.account-form-meta{
  display:flex;
  justify-content:flex-end;
  margin-top:-2px;
  margin-bottom:4px;
  color:#00e5ff;
  font-weight:700;
  cursor:pointer;
}

.account-forgot-link{
  font-size:14px;
  color:var(--muted);
  text-decoration:none;
  transition:color .2s ease, opacity .2s ease;
}

.account-forgot-link:hover{
  color:#00e5ff;
}

.account-btn{
  width:100%;
  min-height:50px;
  margin-top:10px;
  font-size:15px;
  font-weight:800;
  background:linear-gradient(90deg, #00e5ff, #7cff00, #ff00cc);
  background-size:200%;
  color:#000;
  border:none;
  border-radius:14px;
  transition:all .3s ease;
}

.account-btn:hover{
  background-position:100%;
  transform:translateY(-1px);
  box-shadow:0 10px 25px rgba(0,229,255,.25);
}

.account-switch{
  margin:8px 0 0;
  text-align:center;
  font-size:14px;
  color:var(--muted);
  line-height:1.45;
}

.account-switch span{
  color:#00e5ff;
  font-weight:700;
  cursor:pointer;
}

.account-logged{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.account-logged .account-card{
  margin-top:0 !important;
  padding:24px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.account-logged h2{
  margin:0 0 8px;
  font-size:26px;
}

.account-logged p{
  margin:0;
}

.account-status-card{
  margin-top:18px;
}

/* ===== ACCOUNT LOGGATO ===== */
.account-logged-page{
  position:relative;
  min-height:100vh;
}

.account-logged-hero{
  min-height:56vh;
  padding-top:140px;
}

.account-logged-hero__content{
  max-width:1200px;
}

.account-dashboard{
  position:relative;
  z-index:3;
  margin-top:-40px;
}

.account-dashboard__grid{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:24px;
  align-items:start;
}

.account-dashboard__sidebar{
  position:sticky;
  top:110px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.account-sidecard{
  padding:22px;
  border-radius:22px;
  background:rgba(8,10,16,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.account-sidecard__kicker{
  margin:0 0 8px;
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.6px;
}

.account-sidecard h2{
  margin:0 0 8px;
  font-size:28px;
}

.account-sidecard__mail{
  margin:0;
  color:rgba(255,255,255,.82);
  word-break:break-word;
}

.account-dashboard__nav{
  display:grid;
  gap:10px;
}

.account-dashboard__navlink{
  display:block;
  padding:14px 16px;
  border-radius:16px;
  text-decoration:none;
  color:var(--fg);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}

.account-dashboard__navlink:hover,
.account-dashboard__navlink.is-active{
  transform:translateY(-1px);
  border-color:rgba(0,229,255,.28);
  background:rgba(255,255,255,.07);
}

.account-logout-btn{
  width:100%;
}

.account-dashboard__content{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.account-panel{
  padding:24px;
  border-radius:24px;
  background:rgba(8,10,16,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 50px rgba(0,0,0,.28);
}

.account-panel__head{
  margin-bottom:18px;
}

.account-panel__head h3{
  margin:0 0 6px;
  font-size:26px;
}

.account-panel__head p{
  margin:0;
  color:var(--muted);
}

.account-panel__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.account-stat-card{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.account-stat-card small{
  display:block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.account-stat-card strong{
  font-size:18px;
  line-height:1.4;
  word-break:break-word;
}

.account-empty-card{
  padding:22px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.account-empty-card h4{
  margin:0 0 8px;
  font-size:22px;
}

.account-empty-card p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.5;
}

.account-feature-list{
  display:grid;
  gap:14px;
}

.account-feature-item{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.account-feature-item h4{
  margin:0 0 8px;
  font-size:18px;
}

.account-feature-item p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}

/* ===== CHECKOUT ACCESS ===== */
.checkout-access-page{
  min-height:100vh;
  padding:140px 20px 60px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.checkout-access-hero{
  text-align:center;
  margin-bottom:30px;
}

.checkout-access-hero h1{
  font-size:42px;
  margin-bottom:10px;
}

.checkout-access-hero p{
  color:var(--muted);
}

.checkout-access-grid{
  width:100%;
  max-width:1100px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.checkout-access-grid .checkout-card{
  padding:24px;
  border-radius:22px;
  background:rgba(10,12,18,.75);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  gap:14px;
}

.checkout-access-grid .checkout-card input{
  height:48px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.05);
  padding:0 14px;
  color:#fff;
}

.checkout-card--guest{
  border:1px solid rgba(0,229,255,.3) !important;
}

/* ===== CHECKOUT ===== */
.checkout-page{
  min-height:100vh;
  padding-top:0;
}

.checkout-hero{
  padding-top:140px;
  padding-bottom:28px;
}

.checkout-hero__inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

.checkout-layout{
  max-width:1240px;
  margin:0 auto;
  padding:10px 18px 70px;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:24px;
}

.checkout-main,
.checkout-side{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.checkout-card{
  background:rgba(8,10,16,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:22px;
  box-shadow:0 18px 50px rgba(0,0,0,.25);
}

.checkout-card__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.checkout-card__head h2{
  margin:0;
  font-size:24px;
}

.checkout-contact-box p{
  margin:0 0 8px;
}

.checkout-note,
.checkout-final-note{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.checkout-payment-options{
  display:grid;
  gap:12px;
}

.checkout-payment-option{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  cursor:pointer;
}

.checkout-payment-option input{
  margin-top:3px;
}

.checkout-payment-option span{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.checkout-payment-option small{
  color:var(--muted);
}

.checkout-summary{
  position:sticky;
  top:110px;
}

/* ===== EVENT BOOKING FORM - DESKTOP ===== */
.event-hero-page{
  padding-top:115px;
  padding-bottom:34px;
}

.event-booking-card{
  position:sticky;
  top:110px;
}

.event-booking-intro{
  margin:0 0 16px;
  color:rgba(255,255,255,.84);
  line-height:1.5;
}

.event-booking-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.event-booking-form label{
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,.92);
}

.event-booking-form input{
  width:100%;
  min-height:50px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:var(--fg);
  outline:none;
  font-size:14px;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.event-booking-form input::placeholder{
  color:rgba(255,255,255,.42);
}

.event-booking-form input:focus{
  border-color:rgba(0,229,255,.35);
  background:rgba(255,255,255,.07);
  box-shadow:0 0 0 3px rgba(0,229,255,.08);
}

.event-booking-summary{
  margin-top:10px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  display:grid;
  gap:10px;
}

.event-booking-summary__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.event-booking-summary__row span{
  color:var(--muted);
}

.event-booking-summary__row strong{
  font-size:18px;
}

.event-booking-note{
  margin:2px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.event-booking-message{
  margin-bottom:14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  font-size:14px;
  line-height:1.4;
}

.event-booking-message.is-hidden{
  display:none;
}

/* ===== SINGLE EVENT PAGE ===== */
.event-page{
  padding-top:0;
}

.event-hero-shell{
  position:relative;
  padding-top:115px;
  padding-bottom:34px;
  min-height:auto;
}

.event-hero-shell__inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

.event-page-cover-wrap{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 60px rgba(0,0,0,.35);
}

.event-page-cover{
  width:100%;
  height:460px;
  object-fit:cover;
  display:block;
  filter: blur(2px);
  transform: scale(1.05);
}

.event-page-cover-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.55) 55%,
    rgba(0,0,0,.82) 100%
  );
  backdrop-filter: blur(2px);
}

.event-page-cover-content{
  position:absolute;
  left:32px;
  right:32px;
  bottom:32px;
  z-index:2;
}

.event-page-kicker{
  margin:0 0 10px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.8px;
  font-size:12px;
  font-weight:700;
}

.event-page-cover-content h1{
  margin:0 0 10px;
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.02;
}

.event-page-meta{
  margin:0 0 18px;
  font-size:16px;
  color:rgba(255,255,255,.85);
}

.event-page-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:24px;
}

.event-main,
.event-side{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.event-info-card,
.event-side-card{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:22px;
}

.event-info-card h2,
.event-side-card h3{
  margin-top:0;
  margin-bottom:14px;
}

.event-details-list{
  display:grid;
  gap:10px;
  margin-top:18px;
}

.event-rules{
  margin:0;
  padding-left:20px;
  display:grid;
  gap:10px;
}

.event-full-btn{
  width:100%;
  margin-top:10px;
}

/* ===== EVENT BOOKING FORM ===== */
.event-booking-form{
  display:grid;
  gap:12px;
}

.event-booking-form label{
  font-size:14px;
  font-weight:700;
  color:rgba(255,255,255,.92);
}

.event-booking-form input[type="text"],
.event-booking-form input[type="email"],
.event-booking-form input[type="tel"]{
  width:100%;
  min-height:50px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:var(--fg);
  outline:none;
  font-size:15px;
}

.event-booking-form input[type="text"]:focus,
.event-booking-form input[type="email"]:focus,
.event-booking-form input[type="tel"]:focus{
  border-color:rgba(0,229,255,.35);
  background:rgba(255,255,255,.07);
  box-shadow:0 0 0 3px rgba(0,229,255,.08);
}

.event-booking-payment{
  display:grid;
  gap:10px;
  margin-top:4px;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.event-booking-payment__label{
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--muted);
}

.event-booking-payment__option{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  cursor:pointer;
}

.event-booking-payment__option input{
  margin-top:3px;
  flex:0 0 auto;
}

.event-booking-payment__option span{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.event-booking-payment__option strong{
  font-size:15px;
  line-height:1.25;
}

.event-booking-payment__option small{
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

.event-booking-summary{
  display:grid;
  gap:10px;
  margin-top:4px;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.event-booking-summary__row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.event-booking-summary__row:last-child{
  padding-bottom:0;
  border-bottom:0;
}

.event-booking-summary__row span{
  color:var(--muted);
}

.event-booking-summary__row strong{
  font-size:16px;
}

.event-booking-legal{
  display:grid;
  gap:10px;
  margin-top:2px;
}

.event-booking-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  font-size:13px;
  line-height:1.45;
  cursor:pointer;
}

.event-booking-check input{
  margin-top:3px;
  flex:0 0 auto;
}

.event-booking-check a{
  color:#00e5ff;
  text-decoration:none;
  font-weight:700;
}

.event-booking-check a:hover{
  text-decoration:underline;
}

.event-booking-note{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.event-booking-message{
  display:block;
  margin-bottom:14px;
  padding:12px 14px;
  border-radius:14px;
  font-size:14px;
  line-height:1.45;
  border:1px solid rgba(255,255,255,.08);
}

.event-booking-message.is-hidden{
  display:none;
}

.event-booking-message.error{
  background:rgba(130,20,20,.22);
  border-color:rgba(255,100,100,.22);
  color:#ffb2b2;
}

.event-booking-message.success{
  background:rgba(22,95,42,.22);
  border-color:rgba(124,255,160,.22);
  color:#b7ffd0;
}

.event-full-btn[disabled]{
  opacity:.7;
  pointer-events:none;
}

/* ===== GALLERY PAGE ===== */
.gallery-page{
  padding-top:0;
}

.gallery-hero{
  padding-top:140px;
  padding-bottom:34px;
}

.gallery-hero__inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

.gallery-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:28px;
}

.gallery-filter{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--fg);
  border-radius:999px;
  padding:10px 16px;
  cursor:pointer;
}

.gallery-filter.is-active{
  background:rgba(255,255,255,.10);
}

.gallery-grid-full{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.gallery-item{
  position:relative;
  border:0;
  padding:0;
  background:transparent;
  border-radius:18px;
  overflow:hidden;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  transition:transform .35s ease, opacity .35s ease;
}

.gallery-item__label{
  position:absolute;
  left:14px;
  bottom:14px;
  z-index:2;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.55);
  font-size:13px;
  font-weight:700;
}

.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.35));
}

.gallery-item:hover img{
  transform:scale(1.05);
}

.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.82);
  z-index:500;
  padding:24px;
}

.lightbox.is-open{
  display:flex;
}

.lightbox__image{
  max-width:min(1200px, 92vw);
  max-height:86vh;
  border-radius:18px;
}

.lightbox__close{
  position:absolute;
  top:24px;
  right:24px;
  border:0;
  background:rgba(255,255,255,.12);
  color:#fff;
  width:42px;
  height:42px;
  border-radius:999px;
  cursor:pointer;
  font-size:18px;
}

.works-track img{
  cursor:pointer;
}

.works-track img:hover{
  transform:scale(1.03);
}

.works-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(0,0,0,.88);
}

.works-lightbox.is-open{
  display:flex;
}

.works-lightbox__img{
  max-width:min(92vw, 1400px);
  max-height:88vh;
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.55);
}

.works-lightbox__close{
  position:absolute;
  top:18px;
  right:18px;
  width:46px;
  height:46px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

/* ===== COMMUNITY PAGE ===== */
.community-page{
  padding-top:0;
}

.community-hero{
  padding-top:140px;
  padding-bottom:34px;
}

.community-hero__inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

.community-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.community-card{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:22px;
}

.community-card h2{
  margin-top:0;
  margin-bottom:12px;
}

.community-media-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:18px;
}

.community-media-placeholder{
  min-height:120px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:12px;
}

.gamer-dictionary{
  display:grid;
  gap:14px;
}

.gamer-term{
  display:grid;
  gap:6px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.community-form{
  display:grid;
  gap:12px;
}

.community-form label{
  font-size:14px;
  color:var(--muted);
}

.community-form input,
.community-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--fg);
  outline:none;
}

.community-form textarea{
  resize:vertical;
}

.community-btn{
  width:100%;
  margin-top:8px;
}

/* ===== SALA PAGE ===== */
.sala-page{
  padding-top:0;
}

.sala-hero{
  position:relative;
  padding-top:140px;
  padding-bottom:48px;
  overflow:hidden;
}

.sala-hero__inner{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

.sala-hero__btn{
  margin-top:16px;
}

.sala-led-bg{
  position:absolute;
  inset:0;
  opacity:.22;
  background:
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.6)),
    repeating-linear-gradient(180deg, rgba(0,229,255,.8) 0 3px, transparent 3px 42px),
    repeating-linear-gradient(180deg, rgba(255,0,204,.8) 0 3px, transparent 3px 58px),
    repeating-linear-gradient(180deg, rgba(124,255,0,.7) 0 3px, transparent 3px 76px);
  animation:salaLedFall 10s linear infinite;
}

@keyframes salaLedFall{
  from{ background-position:0 0, 0 0, 0 0, 0 0; }
  to{ background-position:0 0, 0 420px, 0 560px, 0 720px; }
}

.sala-features{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
}

.sala-card{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:22px;
}

.sala-card h3{
  margin-top:0;
}

.sala-games{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.sala-game-tag{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}

.sala-gallery{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.sala-gallery img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:18px;
  display:block;
}

.sala-cta-bottom{
  margin-top:24px;
}

/* ===== BOOKING PAGE ===== */
.booking-page{
  position:relative;
  padding-top:0;
  overflow:hidden;
}

.booking-led-bg{
  position:absolute;
  left:0;
  right:0;
  top:240px;
  bottom:0;
  z-index:0;
  pointer-events:none;
  opacity:.42;
}

.booking-led-bg__svg{
  width:100%;
  height:100%;
  display:block;
  transform:scale(.70);
  transform-origin:center center;
}

.booking-hero{
  position:relative;
  z-index:2;
  padding-top:140px;
  padding-bottom:28px;
  overflow:hidden;
}

.booking-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.40), rgba(0,0,0,.62)),
    radial-gradient(700px 300px at 20% 20%, rgba(0,229,255,.08), transparent 60%),
    radial-gradient(700px 300px at 80% 20%, rgba(255,0,204,.07), transparent 60%);
  pointer-events:none;
}

.booking-hero__inner{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

.booking-rules-inline{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.booking-rules-inline span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  font-size:13px;
}

.booking-layout{
  position:relative;
  z-index:2;
  max-width:1240px;
  margin:0 auto;
  padding:10px 18px 70px;
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}

.booking-main,
.booking-side{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.booking-side{
  width:100%;
  max-width:560px;
  margin:0 auto;
}

.booking-summary{
  position:static;
}

.booking-card{
  background:rgba(6,8,14,.12);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:22px;
  box-shadow:0 14px 40px rgba(0,0,0,.18);
}

.booking-card__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.booking-card__head h2{
  margin:0;
  font-size:24px;
}

.booking-step{
  width:36px;
  height:36px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  font-weight:800;
  font-size:13px;
}

.booking-switches{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.booking-switch{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--fg);
  border-radius:999px;
  padding:12px 18px;
  cursor:pointer;
  transition:transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}

.booking-switch:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.20);
}

.booking-switch.is-selected{
  border-color:rgba(0,229,255,.45);
  background:rgba(0,229,255,.08);
  box-shadow:0 0 0 1px rgba(0,229,255,.18), 0 8px 24px rgba(0,0,0,.18);
}

.booking-switch.is-disabled{
  opacity:.35;
  pointer-events:none;
}

.booking-select-wrap{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:420px;
}

.booking-select-wrap--console{
  margin-bottom:14px;
}

.booking-label{
  font-size:14px;
  color:var(--muted);
}

.booking-select{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:#06080f;
  color:#fff;
  outline:none;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
}

.booking-select:focus{
  border-color:rgba(255,255,255,.22);
  background:#0b0e17;
}

.booking-select option{
  background:#06080f;
  color:#fff;
}

.booking-calendar{
  width:100%;
  padding:12px 14px;
  background:#05060a;
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  font-size:15px;
  outline:none;
  color-scheme:dark;
}

.booking-calendar:focus{
  border-color:rgba(255,255,255,.22);
  background:#0b0e17;
}

.booking-note{
  margin:0 0 16px;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.booking-grid-wrap{
  overflow-x:auto;
  padding-bottom:6px;
  display:block;
}

.booking-grid{
  min-width:max-content;
  margin:0 auto;
  display:grid;
  gap:10px;
}

.booking-grid--afternoon{
  grid-template-columns:180px repeat(12, 72px);
}

.booking-grid--evening{
  grid-template-columns:180px repeat(16, 54px);
}

.booking-grid__head{
  padding:12px 10px;
  text-align:center;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-size:13px;
  font-weight:700;
}

.booking-grid__corner{
  text-align:left;
}

.booking-grid__label{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-height:60px;
  padding:0 16px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  font-weight:700;
  font-size:16px;
  line-height:1;
  white-space:nowrap;
}

/* ===== SLOT ORBS ===== */
.slot-orb{
  position:relative;
  height:60px;
  aspect-ratio:1/1;
  justify-self:center;
  width:60px;
  border:0;
  background:transparent;
  cursor:pointer;
  transition:transform .2s ease, filter .2s ease, opacity .2s ease;
}

.slot-orb:hover{
  transform:translateY(-2px) scale(1.03);
}

.slot-orb::before,
.slot-orb::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
}

.slot-orb::before{
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 10px 18px rgba(0,0,0,.28);
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.75), rgba(255,255,255,0) 22%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), rgba(0,0,0,.22) 68%);
}

.slot-orb::after{
  inset:11px;
  border-radius:50%;
  opacity:.95;
}

.slot-orb--pc::after{
  background:linear-gradient(
    180deg,
    #00e5ff 0%,
    #2563ff 16.66%,
    #7cff66 33.33%,
    #ffd447 50%,
    #ff7a5c 66.66%,
    #d94dff 83.33%,
    #00e5ff 100%
  );
  background-size:100% 300%;
  animation:pcOrbFlow 30s linear infinite;
}

@keyframes pcOrbFlow{
  0%{ background-position:0% 0%; }
  100%{ background-position:0% 200%; }
}

.slot-orb--switch-mobile::after{
  background:linear-gradient(180deg, #ff7a7a 0%, #ff4f4f 55%, #8be8ff 100%);
}

.slot-orb--sim::after{
  background:linear-gradient(180deg, #7cff66, #00d08f 65%, #00e5ff 100%);
}

.slot-orb--console-tv::after{
  background:linear-gradient(180deg, #4da3ff, #1f5fff 70%, #d9ecff 100%);
}

.booking-page.console-mode-ps5 .slot-orb--console-tv::after{
  background:linear-gradient(180deg, #79c7ff, #2d6bff 68%, #ffffff 100%);
}

.booking-page.console-mode-switch .slot-orb--console-tv::after{
  background:linear-gradient(180deg, #ff6b6b 0%, #ff3b3b 52%, #ffffff 100%);
}

.booking-page.console-mode-both .slot-orb--console-tv::after{
  background:linear-gradient(180deg, #ff5a5a 0%, #ff884d 30%, #6fa8ff 65%, #2d6bff 100%);
}

.slot-orb.is-booked{
  cursor:not-allowed;
  opacity:.75;
  transform:none;
}

.slot-orb.is-booked::before{
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 8px 14px rgba(0,0,0,.20);
}

.slot-orb.is-booked::after{
  background:linear-gradient(180deg, #8b8b8b, #5e5e5e 70%, #3f3f3f 100%) !important;
  filter:grayscale(1);
}

.slot-orb.is-selected::before{
  box-shadow:
    0 0 0 2px rgba(255,255,255,.18) inset,
    0 0 18px rgba(255,255,255,.18),
    0 0 28px rgba(0,229,255,.18),
    0 10px 20px rgba(0,0,0,.30);
}

.slot-orb.is-selected::after{
  transform:scale(1.08);
  filter:saturate(1.25) brightness(1.15);
}

.slot-orb.is-selected.slot-orb--switch-mobile::before{
  box-shadow:
    0 0 0 2px rgba(255,255,255,.20) inset,
    0 0 18px rgba(255,168,72,.24),
    0 0 28px rgba(255,212,71,.18),
    0 10px 20px rgba(0,0,0,.30);
}

.slot-orb.is-selected.slot-orb--sim::before{
  box-shadow:
    0 0 0 2px rgba(255,255,255,.20) inset,
    0 0 18px rgba(124,255,102,.24),
    0 0 28px rgba(0,208,143,.20),
    0 10px 20px rgba(0,0,0,.30);
}

.summary-list{
  display:grid;
  gap:14px;
  margin-bottom:18px;
}

.summary-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.summary-row span{
  color:var(--muted);
}

.summary-price{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin:18px 0 20px;
  padding:16px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.summary-price span{
  color:var(--muted);
}

.summary-price strong{
  font-size:28px;
}

.booking-pay-btn,
.booking-back-btn{
  width:100%;
}

.booking-back-btn{
  margin-top:10px;
}

.summary-rules-box{
  margin-top:18px;
  padding:16px 16px 6px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.summary-rules-box p{
  margin-top:0;
  margin-bottom:10px;
}

.summary-rules-box ul{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:10px;
  color:var(--muted);
}

/* ===== MAINTENANCE PAGE ===== */
.maintenance-page{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:120px 20px;
  overflow:hidden;
}

.maintenance-bg{
  position:absolute;
  inset:0;
  z-index:0;
  opacity:.5;
}

.maintenance-bg svg{
  width:100%;
  height:100%;
}

.maintenance-content{
  position:relative;
  z-index:2;
  max-width:600px;
  padding:40px;
  border-radius:24px;
  background:rgba(8,10,16,.2);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.maintenance-title{
  font-size:42px;
  margin-bottom:20px;
}

.maintenance-text{
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  margin-bottom:30px;
}

.maintenance-buttons{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1100px){
  .booking-layout{
    grid-template-columns:1fr;
  }

  .booking-summary{
    position:static;
  }
}

@media (max-width:900px){
  .hero__cards{
    grid-template-columns:1fr;
  }

  .navbtn__text{
    display:none;
  }

  .brand__logo{
    height:70px;
  }

  .event-hero-shell{
    padding-top:105px;
  }

  .event-page-cover{
    height:340px;
  }

  .event-page-grid{
    grid-template-columns:1fr;
  }

  .event-page-cover-content{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .event-card-large{
    grid-template-columns:1fr;
  }

  .event-card-large__content{
    padding:22px;
  }

  .events-hero{
    padding-top:120px;
    padding-bottom:26px;
  }

  .offers-grid{
    grid-template-columns:320px;
    justify-content:center;
  }

  .works-track img{
    width:240px;
    height:180px;
  }

  .contact-layout{
    grid-template-columns:1fr;
    max-width:720px;
  }

  .contact-hours{
    max-width:100%;
  }

  .contact-hours .hours-calendar{
    overflow-x:auto;
  }

  .contact-hours .hours-calendar__head,
  .contact-hours .hours-calendar__row{
    min-width:560px;
  }

  .contact-socials{
    grid-template-columns:repeat(2, 180px);
    justify-content:center;
  }

  .slot-orb{
    width:52px;
    height:52px;
  }

  .booking-hero{
    padding-top:120px;
  }

  .account-dashboard{
    margin-top:-20px;
  }

  .account-dashboard__grid{
    grid-template-columns:1fr;
  }

  .account-dashboard__sidebar{
    position:static;
  }

  .account-panel__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:700px){
  .account-page{
    padding:120px 14px 40px;
  }

  .account-hero{
    margin-bottom:22px;
    max-width:100%;
  }

  .account-hero h1{
    font-size:34px;
  }

  .account-hero p{
    font-size:14px;
  }

  .account-container{
    padding:0 4px;
  }

  .account-box{
    max-width:460px;
    padding:22px 18px 20px;
    border-radius:22px;
  }

  .account-box::after{
    inset:2px;
    border-radius:20px;
  }

  .account-tabs{
    margin-bottom:18px;
  }

  .account-tab{
    min-height:44px;
    font-size:13px;
  }

  .account-form{
    gap:10px;
  }

  .account-form input{
    min-height:48px;
    font-size:14px;
  }

  .account-btn{
    min-height:48px;
    font-size:14px;
  }

  .account-switch{
    font-size:13px;
  }

  .account-forgot-link{
    font-size:12px;
  }

  .account-logged h2{
    font-size:22px;
  }

  .account-logged-hero{
    min-height:auto;
    padding-top:120px;
    padding-bottom:26px;
  }

  .account-dashboard{
    margin-top:-12px;
  }

  .account-dashboard__grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .account-dashboard__sidebar{
    position:static;
    gap:14px;
  }

  .account-sidecard{
    padding:20px 18px;
    border-radius:20px;
  }

  .account-sidecard h2{
    font-size:24px;
  }

  .account-dashboard__nav{
    gap:8px;
  }

  .account-dashboard__navlink{
    padding:13px 14px;
    border-radius:14px;
    font-size:14px;
  }

  .account-panel{
    padding:20px 18px;
    border-radius:20px;
  }

  .account-panel__head{
    margin-bottom:14px;
  }

  .account-panel__head h3{
    font-size:24px;
  }

  .account-panel__head p{
    font-size:14px;
  }

  .account-panel__grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .account-stat-card{
    padding:16px;
    border-radius:16px;
  }

  .account-stat-card strong{
    font-size:17px;
  }

  .account-empty-card{
    padding:18px;
    border-radius:18px;
  }

  .account-empty-card h4{
    font-size:20px;
  }

  .account-feature-list{
    gap:12px;
  }

  .account-feature-item{
    padding:16px;
    border-radius:16px;
  }

  .account-feature-item h4{
    font-size:17px;
  }

  .checkout-access-grid{
    grid-template-columns:1fr;
  }

  .checkout-layout{
    grid-template-columns:1fr;
  }

  .checkout-summary{
    position:static;
  }

  .checkout-hero{
    padding-top:120px;
  }
}

.event-hero-page{
  padding-top:105px;
  padding-bottom:24px;
}

.event-booking-card{
  position:static;
}

.event-booking-form input{
  min-height:48px;
  font-size:14px;
}

.event-booking-summary{
  padding:12px 14px;
  border-radius:14px;
}

.event-booking-summary__row strong{
  font-size:17px;
}

/* ===== EVENT BOOKING 700 ===== */
@media (max-width:700px){
  .event-booking-form{
    gap:10px;
  }

  .event-booking-form label{
    font-size:13px;
  }

  .event-booking-form input[type="text"],
  .event-booking-form input[type="email"],
  .event-booking-form input[type="tel"]{
    min-height:46px;
    font-size:14px;
    border-radius:12px;
  }

  .event-booking-payment{
    padding:12px;
    border-radius:16px;
  }

  .event-booking-payment__option{
    padding:11px 12px;
    border-radius:12px;
  }

  .event-booking-payment__option strong{
    font-size:14px;
  }

  .event-booking-payment__option small{
    font-size:12px;
  }

  .event-booking-summary{
    padding:12px;
    border-radius:16px;
  }

  .event-booking-summary__row strong{
    font-size:15px;
  }

  .event-booking-check{
    padding:11px 12px;
    border-radius:12px;
    font-size:12px;
  }

  .event-booking-note{
    font-size:13px;
  }

  .event-booking-message{
    font-size:13px;
    border-radius:12px;
  }
}

@media (min-width:501px){
  .topbar__mobile-greeting{
    display:none !important;
  }
}

@media (max-width:500px){
  body{
    overflow-x:hidden;
  }

  .topbar{
    padding:6px 10px;
    background:rgba(8,10,18,.74);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .topbar.is-top{
    background:transparent;
  }

  .topbar.is-scrolled{
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.15);
    padding:6px 10px;
  }

  .topbar__inner{
    position:relative;
    display:grid;
    grid-template-columns:15px 1fr 18px;
    align-items:center;
    max-width:100%;
    margin:0 auto;
    padding:6px 10px;
    height:80;
  }

  .brand{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    width:auto;
    max-width:110px;
    padding:0;
    z-index:2;
    display:grid;
    place-items:center;
  }

  .brand__logo{
    width:auto;
    max-width:100%;
    object-fit:contain;
    transition:opacity .25s ease, transform .35s ease;
    display:block;
  }

  .brand__logo--full{
    height:52px;
  }

  .brand__logo--wordmark{
    height:72px;
  }

  .topbar.is-top .brand__logo--full{
    opacity:1;
    transform:translateY(0) scale(1);
  }

  .topbar.is-top .brand__logo--wordmark{
    opacity:0;
    transform:translateY(0) scale(.9);
  }

  .topbar.is-scrolled .brand__logo--full{
    opacity:0;
    transform:translateY(-2px) scale(.84);
  }

  .topbar.is-scrolled .brand__logo--wordmark{
    opacity:1;
    transform:translateY(0) scale(1.02);
  }

  .topbar__mobile-greeting{
    display:block;
    width:100%;
    text-align:center;
    margin-top:6px;
    font-size:12px;
    font-weight:700;
    color:var(--fg);
    opacity:.9;
  }

  .topbar__mobile-greeting.is-hidden{
    display:none;
  }

  .navbtn{
    min-width:auto;
    min-height:auto;
    width:auto;
    height:auto;
    padding:0;
    gap:0;
    border:0;
    background:transparent;
    box-shadow:none;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    border-radius:0;
  }

  .navbtn__text{
    display:none;
  }

  .navbtn__icon{
    font-size:20px;
    line-height:1;
  }

  .navbtn:hover,
  .navbtn:active,
  .navbtn:focus{
    background:transparent;
    box-shadow:none;
    border-color:transparent;
  }

  .navbtn--account{
    justify-content:center;
  }

  .topbar__actions{
    justify-self:end;
    display:flex;
    align-items:center;
    gap:10px;
  }

  .hero{
    padding-top:96px;
    min-height:auto;
  }

  .hero__content{
    padding:10px 10px 26px;
  }

  .hero__bg{
    opacity:.72;
  }

  .hero::before{
    background:rgba(0,0,0,.40);
  }

  .hex-bg{
    opacity:.60;
    -webkit-mask-image:none;
    mask-image:none;
  }

  .hex-bg__svg{
    width:100%;
    height:100%;
    transform:scale(.99) translateY(-2%);
    transform-origin:center top;
  }

  .section-honeycomb .hex-bg{
    opacity:.40;
  }

  .section-honeycomb .hex-bg__svg{
    transform:scale(.99) translateY(-12%);
    transform-origin:center top;
  }

  .hex-line{
    animation:none;
    filter:none;
    opacity:.65;
  }

  .hex-glow{
    animation:none;
    filter:none;
    opacity:.08;
  }

  .event-countdown-bar{
    max-width:100%;
    margin:0 0 8px;
    padding:8px 10px;
    gap:8px;
    border-radius:12px;
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
  }

  .event-countdown-text{
    width:100%;
    font-size:11px;
    text-align:left;
  }

  .event-countdown-timer{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:6px;
  }

  .count-box{
    min-width:0;
    padding:6px 2px;
    border-radius:10px;
  }

  .count-box span{
    font-size:15px;
    margin-bottom:1px;
  }

  .count-box small{
    font-size:8px;
    letter-spacing:.2px;
  }

  .event-banner{
    max-width:100%;
    border-radius:14px;
    margin-bottom:10px;
    box-shadow:0 8px 18px rgba(0,0,0,.22);
    animation-duration:10s;
  }

  .event-banner-img{
    width:100%;
    aspect-ratio:16/9;
    height:auto;
    object-fit:cover;
    border-radius:11px;
  }

  .event-banner-content{
    left:12px;
    right:12px;
    bottom:12px;
  }

  .event-banner-content .btn{
    width:auto;
    min-height:38px;
    padding:8px 14px;
    font-size:13px;
  }

.event-hero-page{
  padding-top:96px;
  padding-bottom:18px;
}

.event-booking-intro{
  font-size:13px;
  line-height:1.45;
}

.event-booking-form{
  gap:8px;
}

.event-booking-form label{
  font-size:12px;
}

.event-booking-form input{
  min-height:44px;
  padding:0 12px;
  font-size:13px;
  border-radius:12px;
}

.event-booking-summary{
  margin-top:8px;
  padding:12px;
  border-radius:12px;
  gap:8px;
}

.event-booking-summary__row span{
  font-size:12px;
}

.event-booking-summary__row strong{
  font-size:15px;
}

.event-booking-note{
  font-size:12px;
  line-height:1.4;
}

.event-booking-message{
  padding:10px 12px;
  border-radius:12px;
  font-size:12px;
}

/* ===== EVENT BOOKING 500 ===== */
@media (max-width:500px){
  .event-booking-form{
    gap:9px;
  }

  .event-booking-form label{
    font-size:12px;
  }

  .event-booking-form input[type="text"],
  .event-booking-form input[type="email"],
  .event-booking-form input[type="tel"]{
    min-height:42px;
    padding:0 12px;
    font-size:13px;
    border-radius:11px;
  }

  .event-booking-payment{
    gap:8px;
    padding:10px;
    border-radius:14px;
  }

  .event-booking-payment__label{
    font-size:11px;
  }

  .event-booking-payment__option{
    gap:10px;
    padding:10px;
    border-radius:11px;
  }

  .event-booking-payment__option strong{
    font-size:13px;
  }

  .event-booking-payment__option small{
    font-size:11px;
    line-height:1.35;
  }

  .event-booking-summary{
    gap:8px;
    padding:10px;
    border-radius:14px;
  }

  .event-booking-summary__row{
    padding-bottom:8px;
  }

  .event-booking-summary__row span{
    font-size:12px;
  }

  .event-booking-summary__row strong{
    font-size:14px;
  }

  .event-booking-legal{
    gap:8px;
  }

  .event-booking-check{
    gap:8px;
    padding:10px;
    border-radius:11px;
    font-size:11px;
    line-height:1.35;
  }

  .event-booking-note{
    font-size:12px;
    line-height:1.45;
  }

  .event-booking-message{
    margin-bottom:10px;
    padding:10px 11px;
    font-size:12px;
    border-radius:11px;
  }
}

  .cta{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:8px;
    margin-bottom:10px;
  }

  .cta .btn{
    width:100%;
    min-height:36px;
    font-size:12px;
    padding:8px 12px;
  }

  .kicker{
    font-size:10px;
    margin:0 0 6px;
  }

  .section-head h2{
    font-size:22px;
    line-height:1.15;
  }

  .contact-map-link h3,
  .contact-hours h3{
    font-size:16px;
    line-height:1.2;
  }

  .contact-map-link p{
    font-size:12px;
    line-height:1.4;
  }

  .hours-note{
    font-size:10px;
    line-height:1.35;
  }

  .social-card__logo{
    width:20px;
    height:20px;
  }

  .hero__cards{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:6px;
    margin-top:8px;
  }

  .hero__cards .card{
    padding:8px 6px;
    border-radius:12px;
    min-height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .home-link-card h3{
    font-size:11px;
    margin:0;
    line-height:1.15;
    text-align:center;
  }

  .home-link-card p{
    display:none;
  }

  .open-status-strip{
    padding:8px 0;
  }

  .open-status-strip__track{
    gap:34px;
    font-size:11px;
  }

  .offers-grid{
    display:flex;
    gap:8px;
    overflow-x:auto;
    overflow-y:hidden;
    width:100%;
    margin-top:14px;
    padding:4px 12px 8px 24px;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x proximity;
  }

  .offers-grid::-webkit-scrollbar{
    display:none;
  }

  .offer-card-flip{
    width:116px;
    min-width:116px;
    flex:0 0 116px;
    perspective:none;
    scroll-snap-align:start;
  }

  .offer-card-inner{
    height:206px;
    transform:none !important;
  }

  .offer-card-front,
  .offer-card-back{
    position:absolute;
    inset:0;
    border-radius:14px;
    backface-visibility:visible;
  }

  .offer-card-back{
    display:none;
  }

  .offer-card-front{
    padding:0;
  }

  .offer-card-front__image{
    display:flex;
    width:100%;
    height:68px;
    align-items:center;
    justify-content:center;
    padding:6px 6px 2px;
  }

  .offer-card-front__image img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
  }

  .offer-card-front__body{
    padding:0 10px 10px;
    display:flex;
    flex-direction:column;
    height:calc(100% - 86px);
  }

  .offer-card-front__body h3{
    font-size:8px;
    line-height:1.1;
    margin:0 0 4px;
  }

  .offer-card-front__body p{
    font-size:6px;
    line-height:1.15;
    margin:0 0 4px;
  }

  .offer-card-front__body small{
    font-size:8px;
    line-height:1.15;
    margin:0 0 4px;
  }

  .offer-card-front__body .offer-price{
    margin-top:auto;
  }

  .offer-card-front__body .btn{
    min-height:26px;
    font-size:10px;
    padding:5px 8px;
    margin-top:6px;
    width:100%;
  }

  .offer-card-front::before{
    filter:blur(7px);
    opacity:.55;
  }

  .new-price{
    font-size:13px;
  }

  .contact-map-link{
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:170px;
    gap:14px;
    padding:26px 28px;
  }

  .contact-map-link h3{
    margin:0 0 6px;
    font-size:24px;
  }

  .contact-map-link p{
    margin:0;
    font-size:18px;
    line-height:1.45;
    max-width:760px;
  }

  .works-track{
    gap:12px;
    animation-duration:70s;
  }

  .works-track img{
    width:160px;
    height:125px;
    border-radius:14px;
  }

  .section-cta{
    margin-top:18px;
  }

  .contact-layout{
    grid-template-columns:1fr;
    gap:14px;
    max-width:100%;
  }

  .contact-hours{
    max-width:100%;
  }

  .contact-hours h3{
    font-size:15px;
    margin-bottom:8px;
  }

  .contact-hours .hours-calendar{
    overflow:hidden;
  }

  .contact-hours .hours-calendar__head,
  .contact-hours .hours-calendar__row{
    min-width:0;
    grid-template-columns:repeat(7,minmax(44px,1fr));
  }

  .contact-hours .hours-calendar__day,
  .contact-hours .hours-calendar__cell{
    padding:6px 2px;
    font-size:10px;
    line-height:1.2;
  }

  .hours-note{
    font-size:10px;
    line-height:1.35;
    margin-top:8px;
  }

  .contact-socials{
    grid-template-columns:repeat(5,1fr);
    max-width:320px;
    gap:10px;
    margin:12px auto 0;
  }

  .social-card{
    width:100%;
    min-height:52px;
    padding:0;
  }

  .social-card__text{
    display:none;
  }

  .social-card__logo{
    display:block;
    width:22px;
    height:22px;
  }

  .social-card span{
    font-size:7px;
    line-height:1;
  }

  .booking-grid{
    min-width:980px;
  }

  .works-lightbox{
    padding:14px;
  }

  .works-lightbox__img{
    max-width:94vw;
    max-height:82vh;
    border-radius:14px;
  }

  .works-lightbox__close{
    top:12px;
    right:12px;
    width:42px;
    height:42px;
    font-size:20px;
  }

  .account-page{
    padding:108px 10px 28px;
  }

  .account-hero{
    margin-bottom:18px;
    max-width:100%;
  }

  .account-hero h1{
    font-size:28px;
    line-height:1.08;
  }

  .account-hero p{
    font-size:13px;
    line-height:1.45;
    padding:0 4px;
  }

  .account-container{
    padding:0;
  }

  .account-box{
    max-width:100%;
    padding:18px 14px 16px;
    border-radius:20px;
  }

  .account-box::after{
    inset:2px;
    border-radius:18px;
  }

  .account-tabs{
    padding:3px;
    margin-bottom:16px;
  }

  .account-tab{
    min-height:40px;
    font-size:12px;
  }

  .account-form label{
    font-size:12px;
  }

  .account-form input{
    min-height:44px;
    padding:0 14px;
    font-size:13px;
    border-radius:12px;
  }

  .account-form-meta{
    margin-bottom:2px;
  }

  .account-forgot-link{
    font-size:11px;
  }

  .account-btn{
    min-height:44px;
    font-size:13px;
    border-radius:12px;
  }

  .account-switch{
    font-size:12px;
    line-height:1.4;
  }

  .account-logged .account-card{
    padding:18px;
    border-radius:16px;
  }

  .account-logged h2{
    font-size:20px;
  }

  .account-logged-hero{
    min-height:auto;
    padding-top:108px;
    padding-bottom:18px;
  }

  .account-dashboard{
    margin-top:0;
  }

  .account-dashboard__grid{
    gap:14px;
  }

  .account-sidecard{
    padding:16px 14px;
    border-radius:18px;
  }

  .account-sidecard__kicker{
    font-size:11px;
  }

  .account-sidecard h2{
    font-size:20px;
  }

  .account-sidecard__mail{
    font-size:13px;
    line-height:1.4;
  }

  .account-dashboard__navlink{
    padding:11px 12px;
    border-radius:12px;
    font-size:13px;
  }

  .account-panel{
    padding:16px 14px;
    border-radius:18px;
  }

  .account-panel__head h3{
    font-size:20px;
  }

  .account-panel__head p{
    font-size:13px;
    line-height:1.45;
  }

  .account-stat-card{
    padding:14px;
    border-radius:14px;
  }

  .account-stat-card small{
    font-size:11px;
  }

  .account-stat-card strong{
    font-size:15px;
  }

  .account-empty-card{
    padding:16px 14px;
    border-radius:16px;
  }

  .account-empty-card h4{
    font-size:17px;
  }

  .account-empty-card p{
    font-size:13px;
  }

  .account-feature-item{
    padding:14px;
    border-radius:14px;
  }

  .account-feature-item h4{
    font-size:16px;
  }

  .account-feature-item p{
    font-size:13px;
  }

  .account-logout-btn{
    min-height:44px;
    font-size:13px;
  }

  .checkout-hero{
    padding-top:108px;
    padding-bottom:18px;
  }

  .checkout-card{
    padding:18px 14px;
    border-radius:18px;
  }

  .checkout-card__head h2{
    font-size:20px;
  }
}

/* ===== FIX INPUT FORM (checkbox + radio) ===== */

input[type="checkbox"],
input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #00e5ff; /* colore neon */
  cursor: pointer;
}

/* allineamento testo */
label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

/* ===== FIX PAGINA EVENTI DESKTOP ===== */
.events-page{
  padding-top:0;
}

.events-hero{
  position:relative;
  padding-top:140px;
  padding-bottom:34px;
  overflow:hidden;
}

.events-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 300px at 20% 20%, rgba(0,229,255,.08), transparent 60%),
    radial-gradient(700px 300px at 80% 20%, rgba(255,0,204,.07), transparent 60%);
  pointer-events:none;
}

.events-hero__inner{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

.events-list-wrap{
  padding-top:6px;
}

.events-list{
  display:grid;
  gap:24px;
}

.event-card-large{
  display:grid;
  grid-template-columns:1.08fr 1fr;
  gap:24px;
  align-items:stretch;
  text-decoration:none;
  color:var(--fg);
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.event-card-large:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.16);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.event-card-large__image-wrap{
  position:relative;
  min-height:320px;
  height:100%;
}

.event-card-large__image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.event-card-large__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.30));
}

.event-card-large__content{
  padding:28px 28px 28px 8px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.event-card-large__status{
  display:inline-flex;
  align-items:center;
  width:fit-content;
  margin:0 0 14px;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.6px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
}

.event-card-large__content h2{
  margin:0 0 10px;
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.05;
}

.event-card-large__meta{
  margin:0 0 14px;
  color:var(--muted);
  font-size:15px;
  line-height:1.4;
}

.event-card-large__text{
  margin:0 0 20px;
  color:rgba(255,255,255,.85);
  line-height:1.6;
  font-size:16px;
}

.event-card-placeholder{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:24px;
}

.event-card-placeholder h3{
  margin:0 0 10px;
}

.event-card-placeholder p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.5;
}

.event-card-placeholder__status{
  margin:0 0 10px;
  color:var(--muted);
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.6px;
  font-weight:700;
}

@media (max-width:700px){
  .events-hero{
    padding-top:118px;
    padding-bottom:24px;
  }

  .events-hero__inner{
    padding:0 14px;
  }

  .events-list{
    gap:18px;
  }

  .event-card-large{
    grid-template-columns:1fr;
    gap:0;
    border-radius:20px;
  }

  .event-card-large__image-wrap{
    min-height:220px;
  }

  .event-card-large__content{
    padding:18px 18px 20px;
  }

  .event-card-large__content h2{
    font-size:30px;
  }

  .event-card-large__meta{
    font-size:14px;
  }

  .event-card-large__text{
    font-size:15px;
    margin-bottom:16px;
  }

  .event-card-placeholder{
    padding:18px;
    border-radius:18px;
  }
}

@media (max-width:500px){
  .events-hero{
    padding-top:104px;
    padding-bottom:18px;
  }

  .events-hero__inner{
    padding:0 12px;
  }

  .events-list{
    gap:14px;
  }

  .event-card-large{
    border-radius:18px;
  }

  .event-card-large__image-wrap{
    min-height:180px;
  }

  .event-card-large__content{
    padding:16px 14px 18px;
  }

  .event-card-large__content h2{
    font-size:24px;
  }

  .event-card-large__meta{
    font-size:13px;
  }

  .event-card-large__text{
    font-size:14px;
    line-height:1.5;
  }

  .event-card-large__status{
    font-size:11px;
    padding:7px 10px;
  }

  .event-card-placeholder{
    padding:16px 14px;
    border-radius:16px;
  }

  .event-card-placeholder p{
    font-size:14px;
  }
}