:root{
  --bg:#070713;
  --panel:#0d0d1f;
  --text:#e9e9ff;
  --muted:#b7b7d6;

  --pink:#ff3bd5;
  --blue:#35b6ff;
  --purple:#8b5cff;

  --glow-pink: 0 0 18px rgba(255,59,213,.55), 0 0 42px rgba(255,59,213,.25);
  --glow-blue: 0 0 18px rgba(53,182,255,.55), 0 0 42px rgba(53,182,255,.25);

  --radius:18px;
  --shadow: 0 14px 40px rgba(0,0,0,.55);
  --border: 1px solid rgba(255,255,255,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 700px at 10% 10%, rgba(255,59,213,.18), transparent 60%),
              radial-gradient(900px 650px at 90% 20%, rgba(53,182,255,.18), transparent 60%),
              radial-gradient(700px 500px at 55% 80%, rgba(139,92,255,.14), transparent 60%),
              var(--bg);
  overflow-x:hidden;
}

.bg-glow{
  position:fixed; inset:-200px;
  background:
    radial-gradient(700px 400px at 20% 30%, rgba(255,59,213,.18), transparent 60%),
    radial-gradient(600px 380px at 80% 35%, rgba(53,182,255,.18), transparent 60%),
    radial-gradient(600px 420px at 50% 80%, rgba(139,92,255,.12), transparent 60%);
  filter: blur(24px);
  opacity:.9;
  pointer-events:none;
  z-index:-1;
}

.container{width:min(1120px, 92%); margin:0 auto}

.site-header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(16px);
  background: rgba(10,6,24,.6);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-inner{
  display:flex; align-items:center; gap:16px;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:10px; min-width: 220px}
.brand-mark{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:12px;
  border: 1px solid rgba(255,45,214,.25);
  background: linear-gradient(135deg, rgba(255,45,214,.15), rgba(0,245,255,.08));
  box-shadow: var(--shadow), 0 0 20px rgba(255,45,214,.15);
  font-weight:800;
  letter-spacing:.5px;
  font-family: "Orbitron", sans-serif;
}
.brand-name{font-weight:900; letter-spacing:.8px; font-family: "Orbitron", sans-serif}
.brand-sub{font-size:12px; color:var(--muted)}

.nav{margin-left:auto; display:none; gap:14px}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
  position:relative;
  padding-bottom:4px;
  transition: color .25s ease;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0;
  height:2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  box-shadow: var(--glow-pink);
  transition: width .3s ease;
}
.nav a:hover{color:var(--text)}
.nav a:hover::after{width:100%}
@media (min-width: 860px){
  .nav{display:flex}
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:14px;
  border: var(--border);
  text-decoration:none;
  color:var(--text);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.btn:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.12); box-shadow: 0 12px 28px rgba(0,0,0,.4), var(--glow-cyan)}
.btn:active{transform: translateY(0px)}
.btn-small{padding:10px 12px; border-radius:12px; font-size:14px}

.btn-primary{
  background: linear-gradient(90deg, rgba(255,45,214,.28), rgba(0,245,255,.18));
  border: 1px solid rgba(255,45,214,.35);
  box-shadow: var(--shadow), 0 0 20px rgba(255,45,214,.25), 0 0 40px rgba(0,245,255,.1);
}
.btn-primary:hover{
  box-shadow: var(--shadow), 0 0 24px rgba(255,45,214,.4), 0 0 48px rgba(0,245,255,.2);
}
@keyframes ctaPulse{
  0%, 100%{ box-shadow: var(--shadow), 0 0 20px rgba(255,45,214,.25), 0 0 40px rgba(0,245,255,.1) }
  50%{ box-shadow: var(--shadow), 0 0 28px rgba(255,45,214,.35), 0 0 50px rgba(0,245,255,.15) }
}
.btn-primary{ animation: ctaPulse 3s ease-in-out infinite }
.btn-outline{
  background: transparent;
  box-shadow: none;
}
.btn-outline:hover{ border-color: rgba(0,245,255,.3); box-shadow: 0 0 18px rgba(0,245,255,.15) }

.hero{
  padding: 34px 0 18px;
  position:relative;
}
.hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:120px;
  background-image:
    linear-gradient(rgba(255,45,214,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,45,214,.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, transparent, black 40%);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 40%);
  pointer-events:none;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  position:relative;
  z-index:0;
}
@media(min-width: 980px){
  .hero-inner{grid-template-columns: 1.15fr .85fr; align-items:stretch}
}

.hero-card{
  padding:22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(165deg, rgba(20,12,36,.7), rgba(12,8,24,.8));
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.03);
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(800px 260px at 10% 10%, rgba(255,45,214,.12), transparent 55%),
              radial-gradient(800px 260px at 90% 20%, rgba(0,245,255,.1), transparent 55%);
  opacity:.9;
  pointer-events:none;
}
.hero-card > *{position:relative}

.hero-kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,45,214,.2);
  background: rgba(0,0,0,.3);
  color: var(--muted);
  font-size: 13px;
}
.hero-title{
  position:relative;
  margin: 14px 0 10px;
  line-height:1.0;
  font-weight: 900;
  letter-spacing:3px;
  font-size: clamp(38px, 5vw, 62px);
  font-family: "Orbitron", sans-serif;
}

.neon-pink{
  color:var(--pink);
  text-shadow:
    0 0 8px rgba(255,45,214,.7),
    0 0 18px rgba(255,45,214,.45),
    0 0 32px rgba(255,45,214,.25);
}

.neon-blue{
  color:var(--cyan);
  text-shadow:
    0 0 8px rgba(0,245,255,.7),
    0 0 18px rgba(0,245,255,.45),
    0 0 32px rgba(0,245,255,.25);
}

@keyframes neonPulse{
  from{ filter:brightness(1) }
  to{ filter:brightness(1.12) }
}
.hero-title span{
  animation: neonPulse 2.8s ease-in-out infinite alternate;
}

.hero-text{color: var(--muted); font-size: 16px; max-width: 52ch}
.hero-actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:16px}

.hero-badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:18px}
.badge{
  font-size: 13px;
  color: var(--text);
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  padding: 8px 10px;
  border-radius: 999px;
}

.hero-media{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.2);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.02);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.media-frame{position:relative; aspect-ratio: 4/3; overflow:hidden}
.media-frame img{width:100%; height:100%; object-fit:cover; display:block}
.media-overlay{
  position:absolute; inset:0;
  background: radial-gradient(700px 300px at 20% 20%, rgba(255,45,214,.15), transparent 55%),
              radial-gradient(700px 300px at 80% 20%, rgba(0,245,255,.12), transparent 55%),
              linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.5));
}
.media-caption{
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.section{
  padding: 26px 0;
  opacity:0;
  transform:translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.section.is-visible{
  opacity:1;
  transform:translateY(0);
}
.section-head{margin-bottom: 12px}
.section-title{
  margin:0;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 26px;
  font-family: "Orbitron", sans-serif;
  color:var(--text);
  text-shadow: 0 0 20px rgba(123,77,212,.25), 0 0 40px rgba(255,45,214,.1);
}
.section-subtitle{margin:8px 0 0; color: var(--muted)}

.panel{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.05);
  background: linear-gradient(165deg, rgba(18,10,32,.6), rgba(12,8,24,.7));
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.02);
  padding: 18px;
}

.lead{margin:0; color: var(--text); line-height:1.7}
.mini-grid{
  display:grid; gap:12px;
  grid-template-columns: 1fr;
  margin-top: 16px;
}
@media(min-width: 860px){
  .mini-grid{grid-template-columns: repeat(3, 1fr)}
}
.mini{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.25);
}
.mini-title{font-weight:800; font-family: "Orbitron", sans-serif}
.mini-text{color: var(--muted); margin-top:6px; font-size: 14px}

.cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media(min-width: 860px){
  .cards{grid-template-columns: repeat(4, 1fr)}
}
.card{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(165deg, rgba(18,10,32,.5), rgba(10,6,22,.6));
  box-shadow: 0 10px 22px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.02);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.card:hover{
  border-color: rgba(255,45,214,.15);
  box-shadow: 0 12px 28px rgba(0,0,0,.4), 0 0 24px rgba(255,45,214,.08);
}
.card-title{margin-top:10px; font-weight:900; font-family: "Orbitron", sans-serif}
.card-text{margin-top:6px; color: var(--muted); font-size: 14px; line-height:1.5}
.icon{
  width:46px; height:46px;
  display:grid; place-items:center;
  border-radius: 14px;
  font-size: 22px;
}
.neon-box{
  border: 1px solid rgba(255,45,214,.2);
  background: linear-gradient(135deg, rgba(255,45,214,.15), rgba(0,245,255,.08));
  box-shadow: var(--glow-pink), var(--glow-cyan);
}

.location-grid{
  display:grid; gap:12px;
  grid-template-columns: 1fr;
}
@media(min-width: 980px){
  .location-grid{grid-template-columns: 1.1fr .9fr}
}
.kv{display:grid; gap:10px}
.kv-row{
  display:flex; justify-content:space-between; gap:14px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.25);
}
.kv-label{color: var(--muted)}
.kv-value{font-weight:700}

/* keep one row + icons aligned */
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
  align-items:center;
}

.note{margin-top:10px; color: var(--muted); font-size: 13px}

.map{padding:0}
.map-embed{
  width:100%;
  min-height: 320px;
  border-radius: var(--radius);
  overflow:hidden;
}
.map-embed iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
}

.gallery{
  display:grid; gap:10px;
  grid-template-columns: repeat(2, 1fr);
}
@media(min-width: 860px){
  .gallery{grid-template-columns: repeat(3, 1fr)}
}
.gallery img{
  width:100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 20px rgba(0,0,0,.4);
  transition: transform .28s ease, border-color .25s ease, box-shadow .28s ease;
}
.gallery img:hover{
  transform: scale(1.04) translateY(-2px);
  border-color: rgba(255,45,214,.25);
  box-shadow: 0 14px 28px rgba(0,0,0,.45), 0 0 20px rgba(255,45,214,.12);
}

.center{display:flex; justify-content:center; margin-top: 16px}

.footer{
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(8,5,20,.7);
  backdrop-filter: blur(16px);
  padding: 18px 0;
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:12px}
.footer-left{flex:1}
.footer-counter{
  flex-shrink:0;
  text-align:center;
  font-size:14px;
  color:var(--muted);
}
.footer-counter #visitorCount{font-weight:700; color:var(--text)}
.footer-right{flex:1; display:flex; justify-content:flex-end}
.footer-brand{font-weight:1000; letter-spacing:.6px; font-family: "Orbitron", sans-serif}
.footer-sub{color: var(--muted); font-size: 13px}
.footer-right a{
  text-decoration:none; font-size: 14px;
  margin-left: 10px;
  color: var(--muted);
  transition: color .2s ease, text-shadow .2s ease;
}
.footer-right a:hover{color: var(--cyan); text-shadow: var(--glow-cyan)}
.muted{color: var(--muted)}

/* ICON BUTTONS (same row as contact buttons) */
.social-icon{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  text-decoration:none;
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
}
.social-icon svg{
  width:20px;
  height:20px;
  display:block;
  fill:currentColor;
}
.social-icon:hover{
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(255,255,255,.2);
  box-shadow: var(--glow-cyan);
}

.social-icon.facebook:hover { box-shadow: 0 0 20px rgba(24,119,242,.75); border-color: rgba(24,119,242,.6); }
.social-icon.instagram:hover { box-shadow: 0 0 20px rgba(228,64,95,.75); border-color: rgba(228,64,95,.6); }
.social-icon.tiktok:hover { box-shadow: 0 0 20px rgba(255,255,255,.25); border-color: rgba(255,255,255,.25); }
.social-icon.whatsapp:hover { box-shadow: 0 0 20px rgba(37,211,102,.75); border-color: rgba(37,211,102,.6); }
.social-icon.line:hover { box-shadow: 0 0 20px rgba(0,195,0,.75); border-color: rgba(0,195,0,.6); }

/* Scroll-reveal handled in .section above */

.brand-social-row{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  margin-top:18px;
}

.brand-social{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-decoration:none;
  font-size:13px;
  color:var(--muted);
  transition:.2s ease;
}

.brand-social svg{
  width:42px;
  height:42px;
  margin-bottom:6px;
}

.brand-social:hover{
  transform:translateY(-3px);
}

.facebook svg{ fill:#1877F2; }
.instagram svg{ fill:#E4405F; }
.tiktok svg{ fill:#25f4ee; }
.whatsapp svg{ fill:#25D366; }
.line svg{ fill:#00C300; }
.maps svg{ fill:#ff3bd5; }

.facebook:hover svg{ filter:drop-shadow(0 0 10px #1877F2); }
.instagram:hover svg{ filter:drop-shadow(0 0 10px #E4405F); }
.tiktok:hover svg{ filter:drop-shadow(0 0 10px #ffffff); }
.whatsapp:hover svg{ filter:drop-shadow(0 0 10px #25D366); }
.line:hover svg{ filter:drop-shadow(0 0 10px #00C300); }
.maps:hover svg{ filter:drop-shadow(0 0 10px #ff3bd5); }

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(5,3,12,.88);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:9999;
}

.lightbox.is-open{ display:flex; }

.lightbox img{
  max-width:min(1100px, 92vw);
  max-height:88vh;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.1);
  box-shadow: 0 18px 60px rgba(0,0,0,.7), 0 0 0 1px rgba(255,45,214,.08);
}

.lightbox-close{
  position:absolute;
  top:16px;
  right:18px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(20,12,36,.9);
  color:var(--text);
  font-size:26px;
  line-height:1;
  cursor:pointer;
  transition: box-shadow .2s ease, transform .2s ease;
}

.lightbox-close:hover{
  box-shadow: var(--glow-cyan);
  transform: translateY(-1px);
}

.gallery img{ cursor: zoom-in; }

.tonight{
  margin-top:18px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.3);
}
.tonight-title{
  font-weight:800;
  font-size:14px;
  color:var(--text);
  margin-bottom:10px;
  letter-spacing:.3px;
  font-family: "Orbitron", sans-serif;
}
.tonight-items{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.tonight-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:var(--muted);
}
.tonight-item .dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--pink);
  flex-shrink:0;
  box-shadow:0 0 10px var(--pink);
}

/* Open time: clock + status (near Open section) */
.open-time-status{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.25);
}
.bangkok-clock{
  font-size:18px;
  font-weight:700;
  font-variant-numeric:tabular-nums;
  color:var(--text);
  letter-spacing:.5px;
}
.open-status{
  display:inline-flex;
  font-size:13px;
  font-weight:700;
}
.open-status .pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
}
.open-status.open .pill{
  border-color:rgba(37,211,102,.5);
  background:rgba(37,211,102,.12);
  color:#25D366;
}
.open-status.closed .pill{
  border-color:rgba(255,100,100,.4);
  background:rgba(255,100,100,.08);
  color:#f66;
}
.open-status .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  flex-shrink:0;
}
.open-status.open .dot{
  background:#25D366;
  box-shadow:0 0 10px #25D366;
}
.open-status.closed .dot{
  background:#f66;
  box-shadow:0 0 8px rgba(255,100,100,.6);
}

.music-btn{
  position:fixed;
  right:20px;
  bottom:80px;
  width:50px;
  height:50px;
  border-radius:50%;
  border:1px solid rgba(255,45,214,.25);
  background:rgba(15,8,28,.8);
  color:var(--text);
  cursor:pointer;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  transition: all .25s ease;
}

.music-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,45,214,.5);
  box-shadow: var(--shadow), var(--glow-pink);
}

.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}