* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #080808; color: #fff; font-family: 'DM Sans', sans-serif; overflow-x: hidden; }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
}
.logo img { height: 38px; width: auto; }
.nav { display: flex; gap: 48px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav a { color: #888; text-decoration: none; font-size: 15px; font-weight: 500; transition: color .2s; }
.nav a:hover { color: #fff; }
.header-right { display: flex; align-items: center; gap: 20px; }
.lang { font-size: 14px; font-weight: 600; color: #fff; cursor: pointer; }
.user-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: all .3s; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.club-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.2) 40%,
    rgba(8,8,8,0.8) 80%,
    rgba(8,8,8,0.97) 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-zone {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; color: #E8272A;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 52px; font-weight: 800;
  line-height: 1.06; letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.7);
  max-width: 500px; margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  background: #E8272A; color: #fff;
  padding: 16px 36px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.04em;
  transition: background .2s;
}
.hero-cta:hover { background: #C01F22; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.club-about {
  padding: 80px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.about-inner { max-width: 860px; margin: 0 auto; }

.about-title {
  font-size: 36px; font-weight: 800;
  line-height: 1.15; margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.about-text {
  font-size: 16px; color: #999;
  line-height: 1.75; margin-bottom: 16px;
}
.about-text strong { color: #fff; }

.about-info-box {
  background: #0F0F0F;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 24px 28px;
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 12px;
}

.about-info-item {
  display: flex; gap: 12px;
  font-size: 14px;
}

.about-info-label {
  font-weight: 700; color: #fff;
  min-width: 110px;
}

.about-info-val { color: #888; }

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
.club-gallery {
  padding: 0 0 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.gallery-header {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 32px 40px 20px;
  gap: 10px;
}

.gallery-header h2 {
  font-size: 20px; font-weight: 700;
  margin-right: auto;
}

.gallery-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: #111; border: 1px solid rgba(255,255,255,0.12);
  color: #888; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.gallery-btn:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

.gallery-track {
  display: flex; gap: 12px;
  padding: 0 40px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 320px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .2s;
}
.gallery-item:hover { transform: scale(1.02); }

.gallery-play {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.gallery-item:hover .gallery-play { opacity: 1; }

/* ══════════════════════════════
   VIP TABLES
══════════════════════════════ */
.club-tables {
  padding: 80px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tables-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.tables-text h2 {
  font-size: 32px; font-weight: 800;
  margin-bottom: 20px;
}

.tables-text p {
  font-size: 15px; color: #888;
  line-height: 1.7; margin-bottom: 16px;
}

.tables-cta {
  display: inline-block;
  color: #E8272A; font-size: 14px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(232,39,42,0.4);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.tables-cta:hover { border-color: #E8272A; }

.tables-map {
  background: #0F0F0F;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
}

.map-title {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em;
}

.map-logo {
  height: 28px; width: auto;
  filter: brightness(0) invert(1);
}

.floor-plan {
  background: #1A1A1A;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  min-height: 200px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}

.map-3d-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: zoom-in;
  background: #1A1A1A;
}

.map-3d-img img {
  width: 100%;
  display: block;
  transition: transform .3s;
}

.map-3d-img:hover img {
  transform: scale(1.03);
}

.map-3d-img.zoomed {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  border-radius: 0;
  margin-bottom: 0;
}

.map-3d-img.zoomed img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  transform: none;
}

.floor-stage {
  background: rgba(232,39,42,0.15);
  border: 1px solid rgba(232,39,42,0.3);
  color: #E8272A; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 32px; border-radius: 4px;
  width: 80%; text-align: center;
}

.floor-dancefloor {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #555; font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em;
  padding: 24px; border-radius: 4px;
  width: 80%; text-align: center;
}

.floor-tables {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; width: 100%;
}

.floor-table {
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer; transition: transform .2s;
}
.floor-table:hover { transform: scale(1.1); }
.floor-table.vip { background: rgba(232,39,42,0.2); border: 1px solid #E8272A; color: #E8272A; }
.floor-table.edge { background: rgba(201,161,96,0.2); border: 1px solid #C9A160; color: #C9A160; }
.floor-table.big { background: rgba(99,102,241,0.2); border: 1px solid #6366F1; color: #818CF8; }
.floor-table.small { background: rgba(34,197,94,0.2); border: 1px solid #22C55E; color: #22C55E; }

.map-legend {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 12px;
}

.legend-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: #888;
}

.legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot.vip { background: #E8272A; }
.legend-dot.edge { background: #C9A160; }
.legend-dot.big { background: #6366F1; }
.legend-dot.small { background: #22C55E; }

.map-hint {
  font-size: 11px; color: #444; text-align: center;
}

/* ══════════════════════════════
   UPCOMING EVENTS
══════════════════════════════ */
.club-events {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.club-events-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; color: #E8272A;
  margin-bottom: 12px;
}

.club-events-title {
  font-size: 36px; font-weight: 800;
  letter-spacing: 0.02em; line-height: 1.15;
  margin-bottom: 32px;
}

.club-events-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}

.club-event-slide {
  display: none;
  height: 320px;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.club-event-slide.active { display: flex; }

.slide-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}

.slide-logo {
  position: relative; z-index: 2;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.slide-title {
  position: relative; z-index: 2;
  font-size: 48px; font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.slide-btn {
  position: relative; z-index: 2;
  display: inline-block;
  background: #E8272A; color: #fff;
  padding: 12px 28px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.06em;
  transition: background .2s;
}
.slide-btn:hover { background: #C01F22; }

.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}

.slider-arrow {
  background: transparent; border: none;
  color: #666; font-size: 20px; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: color .2s; padding: 8px;
}
.slider-arrow:hover { color: #fff; }

.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #333; transition: background .2s;
}
.slider-dot.active { background: #E8272A; }

/* ══════════════════════════════
   LOCATION
══════════════════════════════ */
.club-location {
  padding: 80px 40px;
  text-align: center;
}

.location-title {
  font-size: 28px; font-weight: 800;
  letter-spacing: 0.04em; margin-bottom: 32px;
  color: #E8272A;
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.location-info {
  display: flex; align-items: center;
  justify-content: center; gap: 32px;
  flex-wrap: wrap;
}

.location-address {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: #666;
}

.location-social {
  display: flex; gap: 16px;
}

.social-link {
  color: #555; transition: color .2s;
}
.social-link:hover { color: #fff; }

/* ══════════════════════════════
   WHATSAPP
══════════════════════════════ */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  z-index: 999; transition: transform .2s; text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.08); }
.whatsapp-tooltip {
  position: absolute; right: 70px;
  background: #fff; color: #080808;
  font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-right: none; border-left-color: #fff;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-title { font-size: 40px; }
  .tables-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .header { padding: 0 20px; }
  .nav { display: none; }
  .user-btn { display: none; }
  .hamburger { display: flex; }

  .nav.open {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 40px; z-index: 999; display: flex !important;
  }
  .nav.open a { font-size: 28px; font-weight: 700; color: #fff; }

  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 14px; }
  .club-about { padding: 60px 20px; }
  .about-title { font-size: 26px; }
  .gallery-track { padding: 0 16px; }
  .gallery-item { flex: 0 0 260px; height: 320px; }
  .gallery-header { padding: 24px 16px 16px; }
  .club-tables { padding: 60px 20px; }
  .tables-text h2 { font-size: 26px; }
  .club-events-title { font-size: 26px; }
  .slide-title { font-size: 32px; }
  .club-location { padding: 60px 20px; }
  .location-title { font-size: 20px; }
  .whatsapp-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
