@import url("https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css");

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 1rem 0;
  transition: all 0.3s;
}

.navbar.is-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand .logo {
  padding: 0.5rem 0;
}

.logo-image {
  width: 160px;
  height: auto !important;
  /* max-height: 100px; */
  max-height: fit-content !important;
  transition: transform 0.3s;
}

.logo-image:hover {
  /* transform: scale(1.05); */
}

.navbar-menu {
  background: transparent !important;
}

.navbar-item {
  color: var(--text-secondary) !important;
  font-weight: 500;
  height: fit-content !important;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  border-radius: 6px;
  margin: auto 0.25rem;
}

.navbar-item:hover {
  color: var(--primary-cyan) !important;
  background: rgba(0, 212, 255, 0.1);
}

.navbar-item.is-active {
  color: var(--primary-cyan) !important;
}

body {
  padding-top: 70px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero.is-fullheight {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.85) 0%,
      rgba(26, 26, 46, 0.85) 50%,
      rgba(22, 33, 62, 0.85) 100%
    ),
    url("/live_dashboard/corpotate.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  overflow: hidden;
}

.hero.is-fullheight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.5);
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 212, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(168, 85, 247, 0.15) 0%,
      transparent 50%
    );
  animation: float 20s ease-in-out infinite;
  /* z-index: 1; */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 212, 255, 0.03) 2px,
    rgba(0, 212, 255, 0.03) 4px
  );
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.countdown-badge {
  display: inline-block;
  background: rgba(0, 212, 255, 0.2);
  border: 2px solid var(--primary-cyan);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-cyan);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--glow-cyan);
}

.main-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00d4ff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.weather-message {
  display: inline-block;
  background: rgba(255, 107, 157, 0.2);
  border: 1px solid var(--primary-pink);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  color: var(--primary-pink);
  font-size: 0.95rem;
  margin: 1rem 0;
}

.live-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   EXPERIENCES GRID SECTION
   ============================================ */
.section {
  padding: 5rem 0;
  position: relative;
}

.experiences-grid {
  background: var(--dark-bg);
  padding: 4rem 0;
}

.experience-card {
  display: block;
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  height: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.experience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.experience-card:hover::before {
  left: 100%;
}

.experience-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-cyan);
  box-shadow: var(--glow-cyan), var(--shadow-card);
  background: rgba(17, 17, 17, 1);
}

.card-icon {
  margin-bottom: 1.5rem;
  position: relative;
}

.card-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
  transition: transform 0.3s;
}

.experience-card:hover .card-icon img {
  transform: scale(1.1) rotate(5deg);
}

.experience-card .title {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.experience-card .subtitle {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.experience-meta {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tag {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
}

.tag.is-warning {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.tag.is-danger {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.tag.is-success {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.tag.is-info {
  background: rgba(0, 212, 255, 0.2);
  color: var(--primary-cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.tag.is-dark {
  background: rgba(168, 85, 247, 0.2);
  color: var(--primary-purple);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.view-details {
  color: var(--primary-cyan);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.experience-card:hover .view-details {
  color: var(--text-primary);
  transform: translateX(5px);
}

/* ============================================
   HOT DEAL SECTION
   ============================================ */
.hot-deal-card {
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.98) 0%,
    rgba(26, 26, 46, 0.98) 100%
  );
  border: 2px solid var(--primary-cyan);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-cyan), var(--shadow-card);
  backdrop-filter: blur(10px);
}

.hot-deal-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-pink);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: var(--glow-pink);
}

.hot-icon {
  width: 20px;
  height: 20px;
}

.spots-left {
  color: var(--primary-pink);
  font-weight: 600;
  margin-top: 0.5rem;
}

.price-box {
  text-align: right;
  position: relative;
  z-index: 1;
}

.hot-deal-card .button {
  position: relative;
  z-index: 2;
  cursor: pointer !important;
}

.hot-deal-card .column {
  position: relative;
  z-index: 1;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.discounted-price {
  color: var(--primary-cyan);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.discount-badge {
  display: inline-block;
  background: var(--gradient-pink);
  color: var(--text-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--glow-pink);
}

/* ============================================
   CHALLENGE SECTION
   ============================================ */
.challenge-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.challenge-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid var(--primary-purple);
  border-radius: 24px;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.3), var(--shadow-card);
  backdrop-filter: blur(10px);
}

.challenge-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.1) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
}

.challenge-content {
  position: relative;
  z-index: 1;
}

.stat-highlight {
  margin: 2rem 0;
}

.big-stat {
  font-size: 6rem;
  font-weight: 900;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: none;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.challenge-question {
  margin: 2rem 0;
}

.challenge-question .title {
  color: var(--primary-cyan);
  font-weight: 700;
}

/* ============================================
   LEADERBOARDS SECTION
   ============================================ */
.leaderboards-section {
  background: var(--dark-bg);
}

.title-icon {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.leaderboard-table {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow-x: auto;
}

.table {
  background: transparent;
  color: var(--text-primary);
  width: 100%;
}

.table thead th {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary-cyan);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 1rem;
  border: none;
}

.table tbody tr {
  background: rgba(17, 17, 17, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.table tbody tr:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateX(5px);
}

.table tbody td {
  padding: 1.25rem 1rem;
  border: none;
  color: var(--text-primary);
  vertical-align: middle;
}

.rank-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.medal-icon {
  width: 30px;
  height: 30px;
}

.rank-1 .rank-cell {
  color: #ffd700;
}

.rank-2 .rank-cell {
  color: #c0c0c0;
}

.rank-3 .rank-cell {
  color: #cd7f32;
}

/* ============================================
   ACHIEVEMENTS SECTION
   ============================================ */
.achievements-section {
  background: var(--dark-bg);
}

.section-icon {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.achievement-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cyan);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.achievement-card:hover::before {
  transform: scaleX(1);
}

.achievement-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-cyan);
  box-shadow: var(--glow-cyan), var(--shadow-card);
  background: rgba(17, 17, 17, 1);
}

.achievement-icon {
  margin-bottom: 1rem;
}

.achievement-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
  transition: transform 0.3s;
}

.achievement-card:hover .achievement-icon img {
  transform: scale(1.15) rotate(5deg);
}

.achievement-name {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.achievement-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.rarity-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.rarity-badge.common {
  background: rgba(158, 158, 158, 0.2);
  color: #9e9e9e;
  border: 1px solid rgba(158, 158, 158, 0.3);
}

.rarity-badge.rare {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.rarity-badge.epic {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
  border: 1px solid rgba(156, 39, 176, 0.3);
}

.rarity-badge.legendary {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
  border: 1px solid rgba(255, 152, 0, 0.3);
}

/* ============================================
   CORPORATE SECTION
   ============================================ */
.corporate-section {
  background: var(--dark-bg);
}

.corporate-table {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow-x: auto;
}

/* ============================================
   PERSONALIZED GREETING
   ============================================ */
.personalized-greeting {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.05) 0%,
    rgba(168, 85, 247, 0.05) 100%
  );
}

.greeting-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.greeting-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
}

.weather-icon-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.weather-icon {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
  animation: float 3s ease-in-out infinite;
}

/* ============================================
   CORPORATE TEASER
   ============================================ */
.corporate-teaser {
  background: var(--dark-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  transition: all 0.3s;
}

.benefit-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-cyan);
  transform: translateX(5px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.stats-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.corporate-visual {
  background: var(--dark-card);
  border: 2px solid var(--dark-border);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-icon img {
  width: 150px;
  height: 150px;
  opacity: 0.5;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
}

/* ============================================
   ACHIEVEMENT WALL
   ============================================ */
.achievement-wall {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.achievement-wall .achievement-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.badge-icon {
  margin-bottom: 1rem;
}

.badge-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.achievement-title {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.player-name {
  color: var(--primary-cyan);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.achievement-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   SMART BOOKING WIDGET
   ============================================ */
.smart-booking {
  background: var(--dark-bg);
}

.booking-widget {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.smart-booking-icon {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.group-size-selector {
  max-width: 600px;
  margin: 2rem auto;
}

.size-display {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-cyan);
  margin-top: 1rem;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.recommendations-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.recommendation-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.recommendation-card:hover {
  border-color: var(--primary-cyan);
  background: rgba(17, 17, 17, 1);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan);
}

.rec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.rec-time {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.rec-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-label {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ============================================
   GIFT VOUCHER PROMO
   ============================================ */
.gift-voucher-promo {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.05) 0%,
    rgba(168, 85, 247, 0.05) 100%
  );
}

.voucher-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gift-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.5));
  animation: float 3s ease-in-out infinite;
}

.gift-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.voucher-features {
  list-style: none;
  margin: 2rem 0;
}

.voucher-features li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.voucher-options {
  display: grid;
  gap: 1.5rem;
}

.voucher-option {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.voucher-option:hover {
  border-color: var(--primary-cyan);
  background: rgba(17, 17, 17, 1);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan);
}

.option-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.option-price {
  color: var(--primary-cyan);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* ============================================
   LOCATION SELECTOR
   ============================================ */
.location-selector {
  background: var(--dark-bg);
}

.location-icon {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.location-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cyan);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.location-card:hover::before {
  transform: scaleX(1);
}

.location-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-cyan);
  box-shadow: var(--glow-cyan), var(--shadow-card);
  background: rgba(17, 17, 17, 1);
}

.location-card.is-active {
  border-color: var(--primary-cyan);
  box-shadow: var(--glow-cyan);
}

.location-card .location-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.location-card .location-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.status-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.status-badge.is-success {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-badge.is-warning {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
  border: 1px solid rgba(255, 152, 0, 0.3);
}

.address {
  color: var(--text-secondary);
  margin: 1rem 0;
  line-height: 1.6;
}

.location-details {
  margin: 1.5rem 0;
}

.detail {
  color: var(--text-secondary);
  margin: 0.5rem 0;
}

.location-actions {
  margin-top: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050505;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  border-top: 1px solid var(--dark-border);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-cyan);
  transform: translateX(5px);
}

.footer-divider {
  background: var(--dark-border);
  height: 1px;
  margin: 3rem 0 2rem;
  border: none;
}

.footer .title {
  color: var(--primary-cyan);
  margin-bottom: 1rem;
}

.footer p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer a {
  color: var(--primary-cyan);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ============================================
   CHAT WIDGET
   ============================================ */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  border: none;
  color: var(--dark-bg);
  cursor: pointer;
  box-shadow: var(--glow-cyan);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
}

.chat-toggle svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   COOKIE NOTICE
   ============================================ */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-card);
  border-top: 2px solid var(--primary-cyan);
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  display: none;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-notice .button {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 10;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 2rem;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text .title {
  color: var(--primary-cyan);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }

  .big-stat {
    font-size: 4rem;
  }

  .discounted-price {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ============================================
   CORPORATE PAGE CARDS
   ============================================ */

/* Benefit Cards */
.benefit-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefit-card:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-8px);
  box-shadow: var(--glow-cyan), var(--shadow-card);
  background: rgba(17, 17, 17, 1);
}

.benefit-card .benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.benefit-card .title {
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.benefit-card p {
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

/* Package Cards */
.package-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: visible;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-8px);
  box-shadow: var(--glow-cyan), var(--shadow-card);
  background: rgba(17, 17, 17, 1);
}

.package-card.featured {
  border-color: var(--primary-cyan);
  box-shadow: var(--glow-cyan);
  background: rgba(0, 212, 255, 0.05);
}

.package-card.featured:hover {
  background: rgba(0, 212, 255, 0.1);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-pink);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--glow-pink);
  z-index: 2;
}

.package-card .title {
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.package-players {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.package-price {
  color: var(--primary-cyan);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  position: relative;
  z-index: 2;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  flex: 1;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.package-features li {
  pointer-events: none;
}

.package-features li {
  color: var(--text-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 1.5rem;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Testimonial Cards */
.testimonial-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-8px);
  box-shadow: var(--glow-cyan), var(--shadow-card);
  background: rgba(17, 17, 17, 1);
}

.testimonial-card .quote {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 2;
  flex: 1;
}

.testimonial-card .quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-cyan);
  opacity: 0.3;
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card .author {
  color: var(--text-primary);
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.testimonial-card .author strong {
  color: var(--primary-cyan);
  display: block;
  margin-bottom: 0.5rem;
}

/* Analytics Section */
.analytics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.analytics-list li {
  color: var(--text-secondary);
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.analytics-list li:last-child {
  border-bottom: none;
}

.analytics-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-cyan);
  font-weight: 700;
  font-size: 1.2rem;
}

.analytics-visual {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.analytics-visual:hover {
  border-color: var(--primary-cyan);
  box-shadow: var(--glow-cyan), var(--shadow-card);
}

.analytics-visual p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* Corporate Page Buttons */
.package-card {
  pointer-events: auto !important;
}

.package-card * {
  pointer-events: auto !important;
}

.package-card .button,
.cta-section .button,
.package-card a.button {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 1000 !important;
  display: block !important;
  text-decoration: none !important;
  margin-top: auto;
}

.package-card .button:hover,
.cta-section .button:hover,
.package-card a.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
}

.package-card::before,
.package-card::after {
  pointer-events: none !important;
  z-index: 1 !important;
}

.package-card .title,
.package-card .package-players,
.package-card .package-price,
.package-card .package-features {
  pointer-events: none !important;
}

/* ============================================
   LEADERBOARDS PAGE CARDS
   ============================================ */

/* Leaderboard Table Rows */
.leaderboard-table {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow-x: auto;
}

.leaderboard-table table {
  background: transparent;
  color: var(--text-primary);
}

.leaderboard-table thead th {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary-cyan);
  border: none;
  padding: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.leaderboard-table tbody tr {
  background: rgba(17, 17, 17, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.leaderboard-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateX(5px);
}

.leaderboard-table tbody tr.rank-1 {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(255, 215, 0, 0.05) 100%
  );
  border-left: 4px solid #ffd700;
}

.leaderboard-table tbody tr.rank-2 {
  background: linear-gradient(
    135deg,
    rgba(192, 192, 192, 0.15) 0%,
    rgba(192, 192, 192, 0.05) 100%
  );
  border-left: 4px solid #c0c0c0;
}

.leaderboard-table tbody tr.rank-3 {
  background: linear-gradient(
    135deg,
    rgba(205, 127, 50, 0.15) 0%,
    rgba(205, 127, 50, 0.05) 100%
  );
  border-left: 4px solid #cd7f32;
}

.leaderboard-table tbody td {
  padding: 1.25rem 1rem;
  border: none;
  color: var(--text-primary);
  vertical-align: middle;
}

.leaderboard-table .rank-cell {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.leaderboard-table .medal-icon {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.leaderboard-table .team-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.leaderboard-table .room-name {
  color: var(--text-secondary);
}

/* Achievement Cards */
.achievements-section .achievement-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.achievements-section .achievement-card:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-8px);
  box-shadow: var(--glow-cyan), var(--shadow-card);
  background: rgba(17, 17, 17, 1);
}

.achievements-section .achievement-icon {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.achievements-section .achievement-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
  transition: transform 0.3s;
}

.achievements-section .achievement-card:hover .achievement-icon img {
  transform: scale(1.15) rotate(5deg);
}

.achievements-section .achievement-name {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.achievements-section .achievement-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  flex: 1;
}

.achievements-section .rarity-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.achievements-section .rarity-badge.common {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.achievements-section .rarity-badge.rare {
  background: rgba(0, 212, 255, 0.2);
  color: var(--primary-cyan);
  border: 1px solid var(--primary-cyan);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.achievements-section .rarity-badge.epic {
  background: rgba(168, 85, 247, 0.2);
  color: var(--primary-purple);
  border: 1px solid var(--primary-purple);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.achievements-section .rarity-badge.legendary {
  background: rgba(255, 107, 157, 0.2);
  color: var(--primary-pink);
  border: 1px solid var(--primary-pink);
  box-shadow: 0 0 10px rgba(255, 107, 157, 0.3);
}

/* Corporate Table */
.corporate-table {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow-x: auto;
}

.corporate-table table {
  background: transparent;
  color: var(--text-primary);
}

.corporate-table thead th {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary-cyan);
  border: none;
  padding: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.corporate-table tbody tr {
  background: rgba(17, 17, 17, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.corporate-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateX(5px);
}

.corporate-table tbody td {
  padding: 1.25rem 1rem;
  border: none;
  color: var(--text-primary);
  vertical-align: middle;
}

.corporate-table tbody td strong {
  color: var(--primary-cyan);
  font-size: 1.1rem;
}

/* Filters Section */
.filters-section {
  padding: 2rem 0;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.filters .button {
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* CTA Section */
.cta-section .button {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 10;
}

/* ============================================
   GIFT VOUCHERS PAGE CARDS
   ============================================ */

/* Features Box */
.features-box {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.features-box:hover {
  border-color: var(--primary-cyan);
  box-shadow: var(--glow-cyan), var(--shadow-card);
}

.features-box .title {
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.features-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.features-box li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.features-box li:last-child {
  border-bottom: none;
}

.features-box .feature-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
  flex-shrink: 0;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.benefits-list .check-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
  flex-shrink: 0;
}

/* Voucher Form */
.voucher-form {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

.voucher-form .title {
  color: var(--text-primary);
  position: relative;
  z-index: 2;
}

.form-section {
  position: relative;
  z-index: 2;
}

.amount-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.amount-button {
  flex: 1;
  min-width: 120px;
  padding: 1rem 2rem;
  background: rgba(17, 17, 17, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

.amount-button:hover {
  border-color: var(--primary-cyan);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.amount-button.selected {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--primary-cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  color: var(--primary-cyan);
}

.custom-amount {
  position: relative;
  z-index: 2;
}

.custom-amount .input {
  background: rgba(17, 17, 17, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.custom-amount .input:focus {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1), var(--glow-cyan);
}

/* Preview Card */
.preview-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid var(--primary-cyan);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-cyan), var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.preview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cyan);
}

.preview-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.preview-header .title {
  color: var(--primary-cyan);
  margin-bottom: 0.5rem;
}

.preview-header .subtitle {
  color: var(--text-secondary);
}

.preview-amount {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-cyan);
  margin: 2rem 0;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  position: relative;
  z-index: 2;
}

.preview-message {
  color: var(--text-primary);
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.preview-message p {
  margin-bottom: 0.75rem;
}

.preview-message strong {
  color: var(--primary-cyan);
}

.preview-message .message-text {
  color: var(--text-secondary);
  font-style: italic;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.05);
  border-left: 3px solid var(--primary-cyan);
  border-radius: 8px;
  margin: 1rem 0;
}

/* FAQ Items */
.faq-item {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan), var(--shadow-card);
  background: rgba(17, 17, 17, 1);
}

.faq-item .title {
  color: var(--primary-cyan);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* Form Inputs */
.voucher-form .input,
.voucher-form .textarea {
  background: rgba(17, 17, 17, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  position: relative;
  z-index: 2;
}

.voucher-form .input:focus,
.voucher-form .textarea:focus {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1), var(--glow-cyan);
  background: rgba(17, 17, 17, 0.7);
  color: var(--text-primary);
}

.voucher-form .input::placeholder,
.voucher-form .textarea::placeholder {
  color: var(--text-muted);
}

.voucher-form .label {
  color: var(--text-primary);
  position: relative;
  z-index: 2;
}

/* Purchase Button */
.voucher-form .button,
#purchase-voucher-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 100 !important;
  display: block !important;
}

.voucher-form .button:hover,
#purchase-voucher-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);
}

.amount-button {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 10;
}

/* ============================================
   CONTACT PAGE CARDS
   ============================================ */

/* Location Cards */
.contact-page .location-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-page .location-card:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-8px);
  box-shadow: var(--glow-cyan), var(--shadow-card);
  background: rgba(17, 17, 17, 1);
}

.location-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.location-header .title {
  color: var(--text-primary);
  margin: 0;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.status-badge.is-success {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid #4caf50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.status-badge.is-warning {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid #ffc107;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.location-details {
  position: relative;
  z-index: 2;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  position: relative;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item .icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

.detail-item div {
  flex: 1;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
  position: relative;
}

.contact-form {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form:hover {
  border-color: var(--primary-cyan);
  box-shadow: var(--glow-cyan), var(--shadow-card);
}

.contact-form .field {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.contact-form .label {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  background: rgba(17, 17, 17, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  position: relative;
  z-index: 2;
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1), var(--glow-cyan);
  background: rgba(17, 17, 17, 0.7);
  color: var(--text-primary);
}

.contact-form .input::placeholder,
.contact-form .textarea::placeholder {
  color: var(--text-muted);
}

.contact-form .select {
  position: relative;
  z-index: 2;
}

.contact-form .select select {
  width: 100%;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.checkbox-input {
  margin-top: 0.25rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.checkbox-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.checkbox-text .terms-link {
  color: var(--primary-cyan);
  text-decoration: underline;
}

.checkbox-text .terms-link:hover {
  color: var(--primary-pink);
}

.contact-form .button {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 10;
}

/* Quick Contact Cards */
.quick-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quick-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.quick-card:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan), var(--shadow-card);
  background: rgba(17, 17, 17, 1);
}

.quick-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.quick-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
}

.quick-card .title {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.quick-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.coming-soon-label {
  color: var(--primary-pink);
  font-weight: 600;
  font-size: 0.9rem;
}

.quick-card .button {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 10;
}

/* Info Section */
.info-section {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.info-section:hover {
  border-color: var(--primary-cyan);
  box-shadow: var(--glow-cyan), var(--shadow-card);
}

.info-section .title {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list li:last-child {
  border-bottom: none;
}

.check-icon-small {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
  flex-shrink: 0;
}

/* Contact Page FAQ Items */
.contact-page .faq-item {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.contact-page .faq-item:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan), var(--shadow-card);
  background: rgba(17, 17, 17, 1);
}

.contact-page .faq-item .title {
  color: var(--primary-cyan);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.contact-page .faq-item p {
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* ============================================
   LEGAL PAGES (PRIVACY, COOKIE, TERMS)
   ============================================ */

.legal-page {
  min-height: 100vh;
  background: var(--dark-bg);
  padding-top: 2rem;
}

.legal-page .hero {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.05) 0%,
    rgba(168, 85, 247, 0.05) 100%
  );
  padding: 4rem 0;
}

.legal-page .hero .title {
  color: var(--primary-cyan);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.legal-page .hero .subtitle {
  color: var(--text-secondary);
}

.content-section {
  padding: 4rem 0;
}

.content-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin: 0 auto;
}

.content-card .title {
  color: var(--text-primary) !important;
}

.content-card .title.neon-text {
  color: var(--primary-cyan) !important;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.text-content {
  color: var(--text-primary) !important;
  line-height: 1.8;
  font-size: 1.05rem;
}

.text-content p {
  color: var(--text-primary) !important;
  margin-bottom: 1.5rem;
}

.text-content strong {
  color: var(--primary-cyan);
  font-weight: 700;
}

.text-content a {
  color: var(--primary-cyan);
  text-decoration: underline;
  transition: color 0.3s;
}

.text-content a:hover {
  color: var(--primary-pink);
}

.contact-info {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.contact-info .title {
  color: var(--primary-cyan) !important;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-primary) !important;
  line-height: 1.8;
}

.contact-info strong {
  color: var(--text-primary);
  font-weight: 700;
}

.contact-info a {
  color: var(--primary-cyan);
  text-decoration: underline;
}

.contact-info a:hover {
  color: var(--primary-pink);
}

.policy-list,
.browser-links {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.policy-list li,
.browser-links li {
  color: var(--text-primary) !important;
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.8;
}

.policy-list li:last-child,
.browser-links li:last-child {
  border-bottom: none;
}

.policy-list li::before,
.browser-links li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-cyan);
  font-size: 1.5rem;
  line-height: 1;
}

.policy-list li strong,
.browser-links li strong {
  color: var(--primary-cyan);
  font-weight: 700;
}

.browser-links li a {
  color: var(--primary-cyan);
  text-decoration: underline;
  margin-left: 0.5rem;
}

.browser-links li a:hover {
  color: var(--primary-pink);
}

/* ============================================
   HOW TO PLAY MODAL
   ============================================ */
.how-to-play-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.how-to-play-modal.is-active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: rgba(10, 10, 10, 0.98);
  border: 2px solid var(--primary-cyan);
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3), 0 0 80px rgba(168, 85, 247, 0.2);
  animation: modalSlideIn 0.3s ease-out;
  z-index: 10000;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 2px solid var(--primary-cyan);
  color: var(--primary-cyan);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10001;
  pointer-events: auto;
}

.modal-close:hover {
  background: var(--primary-cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  padding: 3rem 2rem 2rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.header-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.modal-title {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.modal-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.modal-body {
  padding: 2rem;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-card {
  display: flex;
  gap: 1.5rem;
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.05) 0%,
    rgba(168, 85, 247, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.step-card:hover {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transform: translateX(5px);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
  color: var(--bg-primary);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.step-content {
  flex: 1;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}

.step-title {
  color: var(--primary-cyan);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pro-tips-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.pro-tips-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.08) 0%,
    rgba(168, 85, 247, 0.08) 100%
  );
  pointer-events: none;
}

.pro-tips-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.pro-tips-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.pro-tips-title {
  color: var(--primary-cyan);
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0;
}

.pro-tips-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.pro-tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 3px solid var(--primary-cyan);
  transition: all 0.3s;
}

.pro-tip-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-left-color: var(--primary-pink);
  transform: translateX(5px);
}

.tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}

.pro-tip-item p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.modal-footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.book-now-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), 0 0 60px rgba(168, 85, 247, 0.3);
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  z-index: 10;
}

.book-now-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.book-now-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.6), 0 0 80px rgba(168, 85, 247, 0.5);
}

.book-now-button:hover::before {
  left: 100%;
}

/* Modal Scrollbar */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    padding: 0;
  }

  .modal-header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .modal-title {
    font-size: 2rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .step-card {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .book-now-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
