/* Modern Normalize */
@charset "UTF-8";
*,
:before,
:after {
  box-sizing: border-box;
}
html {
  font-family: system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
img {
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Three.js Container */
#three-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

#three-container canvas {
  display: block;
}

/* Base Styles - Палитра 2: Тёмная современная */
html {
  font-family: Gabarito, sans-serif;
  scroll-behavior: smooth;
}
body {
  background: url(../images/hero-background.png);
  color: #ffffff;
  font-family: Gabarito, sans-serif;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

/* Dark overlay for better text readability */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 30, 0.75) 0%,
    rgba(20, 15, 40, 0.65) 30%,
    rgba(15, 10, 35, 0.7) 70%,
    rgba(10, 10, 30, 0.85) 100%
  );
  z-index: -2;
  pointer-events: none;
}

/* Main content above Three.js */
main {
  position: relative;
  z-index: 1;
}
h1,
h2,
h3 {
  font-family: Bagel Fat One, system-ui;
  margin: 0;
}

/* Wrapper/Container */
.wrapper {
  max-width: 1512px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .wrapper {
    padding: 0 70px;
  }
}

/* Header */
.site-header {
  padding: 24px 0;
  position: relative;
  z-index: 10;
}
.site-header .brand-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-header .brand-logo img {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(108, 92, 231, 0.4));
  transition: all 0.3s ease;
}
.site-header .brand-logo:hover img {
  filter: drop-shadow(0 6px 15px rgba(255, 215, 0, 0.5));
  transform: scale(1.05);
}

/* Brand Name Styling */
.brand-name {
  font-family: 'Bagel Fat One', system-ui;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(108, 92, 231, 0.5));
  transition: all 0.3s ease;
  animation: brandShimmer 3s ease-in-out infinite;
}
.brand-dot {
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes brandShimmer {
  0%, 100% { filter: drop-shadow(0 2px 8px rgba(108, 92, 231, 0.5)); }
  50% { filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.6)); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.brand-logo:hover .brand-name {
  filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.7));
}

/* Hero Section - Глассморфизм */
.hero-section {
  margin-top: 50px;
  padding-bottom: 160px;
  position: relative;
}
.hero-section .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-text {
  width: 60%;
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  margin-bottom: 30px;
  font-size: 52px;
  text-shadow: 
    0 0 40px rgba(108, 92, 231, 0.8),
    0 4px 20px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(108, 92, 231, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGlow 3s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(108, 92, 231, 0.6)); }
  50% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.6)); }
}
.hero-text h1 img {
  width: 100%;
}
.hero-text h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(108, 92, 231, 0.5),
    2px 2px 0 rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.9), rgba(255, 215, 0, 0.8));
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  box-shadow: 
    0 4px 15px rgba(108, 92, 231, 0.4),
    0 0 30px rgba(255, 215, 0, 0.2);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4), 0 0 30px rgba(255, 215, 0, 0.2); }
  50% { box-shadow: 0 4px 25px rgba(108, 92, 231, 0.6), 0 0 50px rgba(255, 215, 0, 0.4); }
}
.hero-text p {
  margin-bottom: 30px;
  max-width: 720px;
  width: 100%;
  line-height: 1.8;
  color: #ffffff;
  font-size: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(20, 15, 40, 0.4));
  padding: 20px 25px;
  border-radius: 16px;
  border-left: 4px solid #ffd700;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.stat-item {
  background: linear-gradient(145deg, rgba(108, 92, 231, 0.3), rgba(20, 15, 40, 0.5));
  padding: 20px 30px;
  border-radius: 16px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 12px 30px rgba(108, 92, 231, 0.4);
}
.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  font-family: Bagel Fat One, system-ui;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  margin-bottom: 5px;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}
.hero-visuals {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 70px;
}
.hero-visuals img {
  width: 192px;
  height: auto;
}
.hero-visuals .visual-1 {
  margin-right: 50px;
}
.hero-visuals .visual-3 {
  margin-right: 90px;
}

/* Table Header */
.table-header {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.header-row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background: linear-gradient(135deg, rgba(20, 15, 45, 0.9), rgba(30, 25, 60, 0.85));
  padding: 25px 40px;
  border-radius: 20px;
  border: 2px solid rgba(108, 92, 231, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.header-cell {
  text-align: center;
}
.header-cell h3 {
  font-size: 16px;
  margin-bottom: 0;
  color: #ffd700;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  letter-spacing: 2px;
  font-weight: 800;
}
.header-cell img {
  width: 38px;
  height: auto;
}

/* Offers Section - Premium Casino Cards */
.offers-section {
  margin-bottom: 165px;
  position: relative;
  z-index: 2;
}
.section-label {
  border: 3px solid rgba(255, 215, 0, 0.5);
  display: flex;
  align-items: center;
  padding: 15px 35px;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 40px;
  width: 220px;
  margin-bottom: -3px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.8), rgba(118, 75, 162, 0.8));
  backdrop-filter: blur(20px);
  box-shadow: 0 -5px 30px rgba(108, 92, 231, 0.4);
  animation: labelGlow 2s ease-in-out infinite;
}
@keyframes labelGlow {
  0%, 100% { box-shadow: 0 -5px 30px rgba(108, 92, 231, 0.4); }
  50% { box-shadow: 0 -5px 40px rgba(255, 215, 0, 0.5); }
}
.section-label img {
  width: 32px;
  margin-right: 10px;
}
.section-label h6 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.offer-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 2px solid rgba(108, 92, 231, 0.5);
  border-radius: 24px;
  padding: 35px 45px;
  margin-bottom: 25px;
  background: linear-gradient(
    145deg,
    rgba(20, 15, 45, 0.95) 0%,
    rgba(30, 25, 60, 0.92) 50%,
    rgba(25, 20, 50, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 5px 20px rgba(108, 92, 231, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), rgba(108, 92, 231, 0.8), rgba(255, 215, 0, 0.5), transparent);
}
.offer-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    rgba(108, 92, 231, 0.1),
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.8s ease;
}
.offer-card:hover::after {
  left: 150%;
}
.offer-card:hover {
  background: linear-gradient(
    145deg,
    rgba(30, 25, 60, 0.98) 0%,
    rgba(45, 35, 80, 0.95) 50%,
    rgba(35, 30, 65, 0.98) 100%
  );
  transform: translateY(-12px) scale(1.01);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 10px 40px rgba(108, 92, 231, 0.4),
    0 0 60px rgba(108, 92, 231, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.6);
}

/* Card ranking badges */
.offer-card:nth-child(2) {
  position: relative;
}
.offer-card:nth-child(2)::before {
  content: "🏆 #1";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #1a1a2e;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  z-index: 10;
}
.offer-card:nth-child(3)::before {
  content: "🥈 #2";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
  color: #1a1a2e;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(192, 192, 192, 0.5);
  z-index: 10;
}
.offer-card:nth-child(4)::before {
  content: "🥉 #3";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #cd7f32, #e8a860);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(205, 127, 50, 0.5);
  z-index: 10;
}

/* Staggered animation for cards */
.offer-card {
  animation: cardSlideIn 0.6s ease forwards;
  opacity: 0;
}
.offer-card:nth-child(2) { animation-delay: 0.1s; }
.offer-card:nth-child(3) { animation-delay: 0.2s; }
.offer-card:nth-child(4) { animation-delay: 0.3s; }
.offer-card:nth-child(5) { animation-delay: 0.4s; }
.offer-card:nth-child(6) { animation-delay: 0.5s; }
.offer-card:nth-child(7) { animation-delay: 0.6s; }
.offer-card:nth-child(8) { animation-delay: 0.7s; }

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-logo img {
  width: 100%;
  max-width: 200px;
  height: auto;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f5 100%);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(108, 92, 231, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  object-fit: contain;
  filter: brightness(1.05) contrast(1.1);
}
.card-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.6),
    rgba(255, 215, 0, 0.4)
  );
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(15px);
}
.offer-card:hover .card-logo::before {
  opacity: 1;
  animation: logoGlow 1.5s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% { filter: blur(15px) brightness(1); }
  50% { filter: blur(20px) brightness(1.2); }
}
.offer-card:hover .card-logo img {
  transform: scale(1.08) translateY(-6px);
  box-shadow: 
    0 20px 40px rgba(108, 92, 231, 0.5),
    0 0 0 4px rgba(255, 215, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.9);
  filter: brightness(1.1) contrast(1.15);
}
.card-bonus {
  text-align: center;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 15px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(255, 215, 0, 0.08));
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}
.card-bonus img {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 8px rgba(108, 92, 231, 0.3));
  transition: all 0.3s ease;
}
.offer-card:hover .card-bonus img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(108, 92, 231, 0.5));
}
.card-bonus h3 {
  font-size: 18px;
  margin: 0;
  color: #ffffff;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 30%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.offer-card:hover .card-bonus {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.25), rgba(255, 215, 0, 0.15));
  border-color: rgba(255, 215, 0, 0.4);
}
.card-rating {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-rating h4 {
  font-size: 48px;
  font-family: Bagel Fat One, system-ui;
  margin: 0 0 8px;
  color: #ffd700;
  text-shadow: 
    0 0 20px rgba(255, 215, 0, 0.6),
    0 4px 15px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(108, 92, 231, 0.4);
  animation: ratingPulse 2s ease-in-out infinite;
}
@keyframes ratingPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 4px 15px rgba(0, 0, 0, 0.5); }
  50% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.4); }
}
.card-rating img {
  width: 160px;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
  transition: all 0.3s ease;
}
.offer-card:hover .card-rating img {
  filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.5));
  transform: scale(1.05);
}
.card-rating p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  background: rgba(108, 92, 231, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.card-score {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-score img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
  transition: all 0.3s ease;
}
.offer-card:hover .card-score img {
  transform: scale(1.15) rotate(-10deg);
  filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.5));
}
.card-score h4 {
  font-size: 32px;
  font-family: Bagel Fat One, system-ui;
  margin: 0;
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  border: 4px solid #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(
    145deg,
    rgba(108, 92, 231, 0.9),
    rgba(80, 60, 180, 0.95)
  );
  box-shadow: 
    0 0 30px rgba(255, 215, 0, 0.4),
    0 10px 30px rgba(108, 92, 231, 0.5),
    inset 0 3px 6px rgba(255, 255, 255, 0.2),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.card-score h4::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 215, 0, 0.2),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}
.offer-card:hover .card-score h4::before {
  top: 50%;
  left: 50%;
}
.offer-card:hover .card-score h4 {
  transform: scale(1.15) rotate(8deg);
  border-color: #ffd700;
  box-shadow: 
    0 0 50px rgba(255, 215, 0, 0.6),
    0 15px 40px rgba(108, 92, 231, 0.6),
    inset 0 3px 6px rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    145deg,
    rgba(130, 110, 255, 0.95),
    rgba(108, 92, 231, 1)
  );
}
.card-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.btn-bonus {
  padding: 18px 40px;
  border: none;
  color: #1a1a2e;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #ffd700 0%,
    #ffed4a 50%,
    #ffd700 100%
  );
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 25px rgba(255, 215, 0, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
  0%, 100% { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.3); }
}
.btn-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}
.btn-bonus:hover::before {
  left: 100%;
}
.btn-bonus:hover {
  background: linear-gradient(
    135deg,
    #ffed4a 0%,
    #fff 50%,
    #ffd700 100%
  );
  transform: translateY(-6px) scale(1.08);
  box-shadow: 
    0 15px 40px rgba(255, 215, 0, 0.6),
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(255, 215, 0, 0.4);
}
.btn-bonus:active {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

/* FAQ Section */
.faq-section {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
.faq-section .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.faq-content {
  width: 55%;
}
.faq-content h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 
    0 0 30px rgba(108, 92, 231, 0.5),
    0 4px 15px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-list {
  width: 100%;
}
.faq-element {
  background: linear-gradient(145deg, rgba(20, 15, 45, 0.95), rgba(30, 25, 60, 0.9));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid rgba(108, 92, 231, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.faq-element:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(108, 92, 231, 0.3);
}
.faq-toggle {
  width: 100%;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(108, 92, 231, 0.1));
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.faq-toggle:hover {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.35), rgba(108, 92, 231, 0.2));
}
.faq-toggle:after {
  content: "▼";
  position: absolute;
  right: 28px;
  transition: transform 0.4s ease;
  color: #ffd700;
  font-size: 14px;
}
.faq-element.active .faq-toggle:after {
  transform: rotate(180deg);
}
.faq-response {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 28px;
  display: none;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
}
.faq-element.active .faq-response {
  display: block;
}
.faq-response p {
  padding-left: 20px;
  border-left: 4px solid #ffd700;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.faq-image {
  width: 40%;
}
.faq-image img {
  width: 100%;
  border-radius: 20px;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, rgba(15, 10, 35, 0.98) 0%, rgba(10, 8, 25, 1) 100%);
  padding: 50px 0 30px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, #6c5ce7, #ffd700, #6c5ce7, transparent) 1;
  position: relative;
  z-index: 5;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
  filter: blur(1px);
}
.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.site-footer .brand-logo img {
  width: 60px;
  filter: drop-shadow(0 4px 10px rgba(108, 92, 231, 0.4));
}
.site-footer .brand-name {
  font-size: 28px;
}
.site-footer p {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.footer-links {
  padding: 26px 0;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(30, 25, 60, 0.3));
  border-radius: 20px;
  padding: 30px 40px;
  border: 1px solid rgba(108, 92, 231, 0.2);
}
.footer-links img {
  width: auto;
  height: 35px;
  filter: brightness(0.9);
  transition: all 0.3s ease;
}
.footer-links a:hover img,
.footer-links span:hover img {
  filter: brightness(1.1);
  transform: translateY(-3px);
}
.footer-nav {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.footer-nav a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid transparent;
  letter-spacing: 1px;
}
.footer-nav a:hover {
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.1);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}
.footer-copyright {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(108, 92, 231, 0.2);
  margin-top: 20px;
}
.footer-copyright h6 {
  font-size: 11px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

/* Age Verification Modal - Premium */
.verification-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.verification-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.verification-content {
  background: linear-gradient(
    145deg,
    rgba(20, 15, 50, 0.98) 0%,
    rgba(35, 28, 70, 0.95) 100%
  );
  backdrop-filter: blur(25px);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(108, 92, 231, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 340px;
  color: #ffffff;
  text-align: center;
  border: 2px solid rgba(108, 92, 231, 0.5);
  position: relative;
  overflow: hidden;
}
.verification-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6c5ce7, #ffd700, #6c5ce7);
}
.verification-icon {
  font-size: 56px;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
  filter: drop-shadow(0 4px 15px rgba(255, 0, 0, 0.3));
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.verification-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.verification-content p {
  font-size: 15px;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
.verification-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn {
  padding: 14px 24px;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-confirm {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #1a1a2e;
  border: none;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}
.btn-confirm:hover {
  background: linear-gradient(135deg, #ffed4a, #fff);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}
.btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn-reject:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Policy Pages Styles */
.policy-page {
  background: linear-gradient(
    145deg,
    #0a0a1f 0%,
    #12102a 25%,
    #1a1535 50%,
    #12102a 75%,
    #0a0a1f 100%
  );
  background-attachment: fixed;
}
.policy-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(108, 92, 231, 0.08) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
}

.policy-hero {
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
}
.policy-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.policy-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.9), rgba(255, 215, 0, 0.8));
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}
.policy-hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(108, 92, 231, 0.5));
}
.policy-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.policy-section {
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.policy-content {
  width: 100%;
}
.policy-intro {
  background: linear-gradient(145deg, rgba(20, 15, 50, 0.95), rgba(35, 28, 70, 0.9));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(108, 92, 231, 0.5);
  border-radius: 24px;
  padding: 50px;
  margin-bottom: 50px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.policy-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6c5ce7, #ffd700, #6c5ce7, transparent);
}
.policy-intro h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}
.policy-intro p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.policy-intro p:last-child {
  margin-bottom: 0;
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}
.policy-mini-card {
  background: linear-gradient(145deg, rgba(20, 15, 50, 0.95), rgba(35, 28, 70, 0.9));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(108, 92, 231, 0.4);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.policy-mini-card:hover {
  background: linear-gradient(145deg, rgba(30, 25, 60, 0.98), rgba(50, 40, 90, 0.95));
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(108, 92, 231, 0.4);
  border-color: rgba(255, 215, 0, 0.5);
}
.mini-icon {
  font-size: 48px;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 10px rgba(108, 92, 231, 0.4));
}
.policy-mini-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.policy-mini-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
.policy-accordion {
  background: linear-gradient(145deg, rgba(20, 15, 50, 0.95), rgba(35, 28, 70, 0.9));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(108, 92, 231, 0.5);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}
.policy-accordion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, #6c5ce7, #ffd700, transparent);
}
.policy-accordion h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #ffd700;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}
.update-date {
  text-align: center;
  font-size: 14px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(108, 92, 231, 0.2);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  width: 100%;
}
.accordion-item {
  background: linear-gradient(145deg, rgba(15, 10, 40, 0.9), rgba(25, 20, 55, 0.85));
  border: 2px solid rgba(108, 92, 231, 0.35);
  border-radius: 16px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.accordion-item:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateX(5px);
}
.accordion-header {
  width: 100%;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(108, 92, 231, 0.1));
  border: none;
  color: #ffffff;
  padding: 22px 28px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: Gabarito, sans-serif;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.accordion-header:hover {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.35), rgba(108, 92, 231, 0.2));
}
.accordion-icon {
  font-size: 24px;
  font-weight: 700;
  transition: transform 0.4s ease;
  color: #ffd700;
}
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}
.accordion-item.active {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  background: rgba(0, 0, 0, 0.2);
}
.accordion-item.active .accordion-content {
  max-height: 2000px;
  padding: 28px;
}
.accordion-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.accordion-content h4 {
  font-size: 20px;
  margin: 25px 0 15px;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.accordion-content h4:first-child {
  margin-top: 0;
}
.accordion-content ul {
  padding-left: 25px;
  margin: 15px 0;
}
.accordion-content li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}
.accordion-content li::marker {
  color: #ffd700;
}
.accordion-content strong {
  color: #ffd700;
}

/* Responsive */
@media (max-width: 990px) {
  .table-header {
    display: none;
  }
  .site-header {
    text-align: center;
  }
  .hero-section .wrapper {
    flex-direction: column;
  }
  .hero-text {
    width: 100%;
    text-align: center;
  }
  .hero-text h1 {
    margin-bottom: 20px;
    font-size: 36px;
  }
  .hero-text h2 {
    font-size: 24px;
  }
  .hero-text p {
    font-size: 16px;
    padding: 15px 20px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 8px 16px;
  }
  .hero-stats {
    justify-content: center;
    gap: 15px;
  }
  .stat-item {
    padding: 15px 20px;
    flex: 1;
    min-width: 100px;
  }
  .stat-number {
    font-size: 24px;
  }
  .stat-label {
    font-size: 10px;
  }
  .hero-visuals {
    width: 100%;
    gap: 20px;
    margin-top: 30px;
  }
  .offer-card {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
    border-radius: 20px;
  }
  .card-bonus {
    width: 100%;
    max-width: 280px;
    padding: 15px 20px;
  }
  .card-bonus h3 {
    font-size: 16px;
  }
  .card-score {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .card-score img {
    margin-bottom: 0;
    margin-right: 10px;
  }
  .card-score h4 {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    font-size: 28px;
  }
  .card-rating h4 {
    font-size: 40px;
  }
  .hero-section {
    padding-bottom: 90px;
  }
  .offers-section {
    margin-bottom: 80px;
  }
  .faq-content {
    width: 100%;
  }
  .faq-content h2 {
    font-size: 28px;
  }
  .faq-image {
    display: none;
  }
  .faq-toggle {
    font-size: 16px;
    padding: 16px 20px;
  }
  .card-logo img {
    width: 160px;
    max-width: 160px;
    padding: 16px;
    border-radius: 16px;
  }
  .hero-visuals .visual-1 {
    margin-right: 20%;
  }
  .hero-visuals .visual-2 {
    margin-right: 10%;
  }
  .hero-visuals .visual-3 {
    margin-right: 30%;
  }
  .section-label {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 12px 20px;
    justify-content: center;
    width: auto;
  }
  .section-label h6 {
    font-size: 14px;
  }
  .site-footer p {
    font-size: 10px;
    text-align: center;
  }
  .btn-bonus {
    width: 160px;
    height: 52px;
    font-size: 13px;
    padding: 14px 30px;
  }
}
@media (max-width: 768px) {
  .verification-popup {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }
  .verification-content {
    max-width: 100%;
  }
  .policy-hero {
    padding: 50px 0 40px;
  }
  .policy-hero h1 {
    font-size: 32px;
  }
  .policy-subtitle {
    font-size: 16px;
  }
  .policy-badge {
    font-size: 11px;
    padding: 8px 16px;
  }
  .policy-intro,
  .policy-accordion {
    padding: 25px;
    border-radius: 16px;
  }
  .policy-intro h2,
  .policy-accordion h2 {
    font-size: 24px;
  }
  .accordion-header {
    font-size: 14px;
    padding: 16px 18px;
  }
  .accordion-icon {
    font-size: 18px;
  }
  .accordion-item.active .accordion-content {
    padding: 20px;
  }
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .policy-mini-card {
    padding: 20px;
  }
  .mini-icon {
    font-size: 36px;
  }
  .policy-mini-card h4 {
    font-size: 18px;
  }
  .brand-name {
    font-size: 22px;
  }
  .site-footer .brand-name {
    font-size: 20px;
  }
}
