/* Asgard Cyber Club - Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #07090e;
  --bg-secondary: #0c1017;
  --bg-card: rgba(14, 18, 27, 0.85);
  --bg-card-hover: rgba(20, 26, 38, 0.95);
  
  --comfort-color: #00e676;
  --comfort-glow: rgba(0, 230, 118, 0.35);
  --comfort-dark: rgba(0, 230, 118, 0.08);

  --vip-blue: #0088ff;
  --vip-blue-glow: rgba(0, 136, 255, 0.35);
  --vip-blue-dark: rgba(0, 136, 255, 0.08);

  --vip-red: #ff1744;
  --vip-red-glow: rgba(255, 23, 68, 0.4);
  --vip-red-dark: rgba(255, 23, 68, 0.08);

  --wa-color: #25D366;
  --gis-color: #008be5;
  --ig-color: #e1306c;

  --border-light: rgba(255, 255, 255, 0.1);
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 230, 118, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(0, 136, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 70%, rgba(255, 23, 68, 0.06) 0%, transparent 50%),
    linear-gradient(to bottom, #07090e 0%, #0a0d14 50%, #07090e 100%);
  background-attachment: fixed;
}

/* Cyber Matrix Background Grid */
.cyber-grid {
  position: absolute;
  inset: 0;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

.font-gaming {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.05em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #07090e;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Glow effects */
.glow-comfort {
  box-shadow: 0 0 25px var(--comfort-glow);
}
.glow-vip-blue {
  box-shadow: 0 0 25px var(--vip-blue-glow);
}
.glow-vip-red {
  box-shadow: 0 0 25px var(--vip-red-glow);
}

.border-comfort {
  border-color: var(--comfort-color) !important;
}
.border-vip-blue {
  border-color: var(--vip-blue) !important;
}
.border-vip-red {
  border-color: var(--vip-red) !important;
}

.text-comfort {
  color: var(--comfort-color) !important;
}
.text-vip-blue {
  color: var(--vip-blue) !important;
}
.text-vip-red {
  color: var(--vip-red) !important;
}

.bg-comfort-alpha {
  background-color: var(--comfort-dark);
}
.bg-vip-blue-alpha {
  background-color: var(--vip-blue-dark);
}
.bg-vip-red-alpha {
  background-color: var(--vip-red-dark);
}

/* Glass Card */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}



/* Interactive Map Seat */
.pc-seat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  position: relative;
}

.pc-seat:hover {
  transform: translateY(-3px) scale(1.08);
  z-index: 10;
}

.pc-seat.comfort {
  border-color: var(--comfort-color);
  color: var(--comfort-color);
  background: rgba(0, 230, 118, 0.1);
}
.pc-seat.comfort:hover, .pc-seat.comfort.active {
  background: var(--comfort-color);
  color: #fff;
  box-shadow: 0 0 16px var(--comfort-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.pc-seat.vip-blue {
  border-color: var(--vip-blue);
  color: var(--vip-blue);
  background: rgba(0, 136, 255, 0.12);
}
.pc-seat.vip-blue:hover, .pc-seat.vip-blue.active {
  background: var(--vip-blue);
  color: #fff;
  box-shadow: 0 0 16px var(--vip-blue);
}

.pc-seat.vip-red {
  border-color: var(--vip-red);
  color: var(--vip-red);
  background: rgba(255, 23, 68, 0.12);
}
.pc-seat.vip-red:hover, .pc-seat.vip-red.active {
  background: var(--vip-red);
  color: #fff;
  box-shadow: 0 0 16px var(--vip-red);
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* Mobile Sticky Bottom Bar */
@media (max-width: 768px) {
  .floating-wa-btn {
    bottom: 84px;
    right: 18px;
    padding: 10px 16px;
    font-size: 14px;
  }
  .pc-seat {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
}

/* Toast Notification */
#toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1e293b;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
#toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}



/* Instagram gradient button */
.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}
.btn-instagram:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

/* 2GIS button */
.btn-2gis {
  background: #008be5;
  color: white;
}
.btn-2gis:hover {
  background: #009cfb;
  box-shadow: 0 6px 20px rgba(0, 139, 229, 0.4);
}

/* Table styling matching price1080.png */
.asgard-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.asgard-price-table th,
.asgard-price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.asgard-price-table th {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.asgard-price-table td.time-col {
  font-weight: 700;
  font-size: 1.15rem;
}
.asgard-price-table td.price-val {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}
.asgard-price-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Rules list numbered badges */
.rule-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
