:root {

  --color-text-light: #f8fafc;
  --color-yellow: #fbbf24;
  --accent: #06b6d4;
  --accent-coral-dark: #ef4444;
  --color-white: #ffffff;
  --color-black: #0f172a;
  --color-purple-dark: #1e293b;
  --color-purple-light: #475569;
  --color-purple-accent: #3b82f6;
  --color-purple-badge: #6366f1;
  --color-purple-gradient-1: #0ea5e9;
  --color-purple-gradient-2: #3b82f6;
  --color-gray-light: #94a3b8;
  --color-gray-medium: #1e293b;
  --color-bg-dark: #0f172a;
  --color-purple-gradient-3: #06b6d4;
  --color-purple-gradient-4: #3b82f6;
  --color-purple-gradient-5: #6366f1;
  --color-bg-after: #1e40af;
  --color-faq-item-title: #60a5fa;
  --font-base: 'Poppins', sans-serif;
}

/* ===== Global Reset ===== */
html, body {
  height: 100%;
}

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

/* ===== Body & Background ===== */
body {
  font-family: var(--font-base);
  font-size: 16px;
  color: var(--color-black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.btn-gradient_age, 
.btn-gradient_age_no {
  cursor: pointer;
}

/* ===== Header ===== */
.site-header {
  background: linear-gradient(135deg, var(--color-bg-dark), var(--color-purple-dark));
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

.header-logo img {
  height: 50px;
  width: auto;
}

.header-title {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.header-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header-nav a {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.header-nav a:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-purple-gradient-2);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-purple-gradient-2);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header-nav a:hover::after {
  width: 80%;
}

/* ===== Utility Container ===== */
.container {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
}

/* ===== Main Content Wrapper ===== */
main {
  flex: 1;
  width: 100%;
  background: 
    linear-gradient(
      rgba(15, 23, 42, 0.9),
      rgba(30, 41, 59, 0.8)
    ),

}

.about-section,
.contact-section,
.privacy-section,
.cookie-section,
.terms-section {
  padding: 100px 20px;
}

.content-column {
  margin-bottom: 120px;

}

/* Large Desktop - 1200px and above */
@media (min-width: 1200px) {
  .cookie-banner__actions {
    gap: 20px;
  }
  
  .cookie-btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    min-width: 150px;
  }
  
  /* ===== Page Sections Desktop ===== */
  
  .about-title,
  .contact-title,
  .privacy-title,
  .cookie-title,
  .terms-title {
    font-size: 3rem;
  }
  
  .about-subtitle,
  .privacy-subtitle,
  .cookie-subtitle,
  .terms-subtitle {
    font-size: 2rem;
  }
  

}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  overflow: visible;
  color: var(--color-text-light);
  padding: 100px 0 80px 0;
  background: 
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.95),
      rgba(30, 41, 59, 0.9),
      rgba(15, 23, 42, 0.95)
    ),
    url('../img/background-virtual.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Age Restriction Icon ===== */
.age-restriction-icon {
  position: relative;
  width: 63px;
  height: 66px;
  margin: 0 0 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #1e293b, #334155, #1e293b);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.age-restriction-icon::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #0f172a;
  border-radius: 50%;
  z-index: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.age-restriction-icon:hover {
  background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
  transform: scale(1.05);
}

.age-restriction-icon:hover::before {
  background: #1e293b;
}

.age-restriction-icon span {
  position: relative;
  z-index: 1;
  color: #94a3b8;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-base);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.age-restriction-icon:hover span {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

/* Age Gate Dialog Icon Centering */
.age-gate__dialog .age-restriction-icon {
  margin: 0 auto 32px auto;
  display: block;
  background: linear-gradient(45deg, #6b7280, #9ca3af, #6b7280);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.age-gate__dialog .age-restriction-icon::before {
  background: #374151;
}

.age-gate__dialog .age-restriction-icon span {
  color: #d1d5db;
}

.age-gate__dialog .age-restriction-icon:hover {
  background: linear-gradient(45deg, var(--color-purple-gradient-1), var(--color-white), var(--color-purple-gradient-2));
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  transform: scale(1.05);
}

.age-gate__dialog .age-restriction-icon:hover::before {
  background: var(--color-bg-dark);
}

.age-gate__dialog .age-restriction-icon:hover span {
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== Hero Content ===== */
.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}



.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--color-white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* ===== Hero Stats ===== */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 120px;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-purple-gradient-2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ===== Hero Features ===== */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 140px;
}

.hero-feature:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.1) 0%, 
    rgba(99, 102, 241, 0.05) 100%);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.hero-feature i {
  font-size: 2rem;
  color: var(--color-purple-gradient-2);
  margin-bottom: 8px;
}

.hero-feature span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
}

/* ===== Hero Actions ===== */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s both;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-purple-gradient-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

/* ===== Age Restriction ===== */
.age-restriction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.age-restriction p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  opacity: 0.8;
  margin: 0;
}

/* ===== Casinos Section ===== */
.casinos-section {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.8) 0%, 
    rgba(30, 41, 59, 0.9) 50%, 
    rgba(51, 65, 85, 0.8) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.casinos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-title i {
  font-size: 2rem;
  color: var(--color-purple-gradient-2);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.btn-primary i, .btn-secondary i {
  font-size: 1rem;
}

/* ===== Features List ===== */
.hero-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  z-index: 3;
  justify-content: center;
  margin: 0 auto;
  max-width: 600px;
}

/* ===== Hero Features - Tablet and Mobile (below 1024px) ===== */
@media (max-width: 1023px) {
  .hero-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    overflow-x: visible;
    overflow-y: visible;
  }
  
  .hero-features li {
    width: 100%;
    max-width: 400px;
    justify-content: flex-start;
  }
}

/* ===== Mobile Background Images (below 768px) ===== */
@media (max-width: 767px) {
  .hero {
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
}

/* ===== Desktop (above 1024px) ===== */
@media (min-width: 1024px) {
  .age-restriction-icon {
    margin: 0 0 32px 0;
  }
}

.hero-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease-out both;
  min-width: 150px;
}

.hero-features li:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-purple-gradient-2);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.hero-features li:nth-child(1) { animation-delay: 0.6s; }
.hero-features li:nth-child(2) { animation-delay: 0.8s; }
.hero-features li:nth-child(3) { animation-delay: 1s; }

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.feature-icon i {
  font-size: 24px;
  color: var(--color-white);
}

.feature-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
}

/* ===== Hero Image ===== */
.hero-image {
  flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite both;
}

/* ===== Top Casino Card Section ===== */
/* Теперь часть hero секции */

.casino-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%, 
    rgba(30, 41, 59, 0.95) 50%, 
    rgba(51, 65, 85, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  width: 100%;
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInUp 0.8s ease-out 0.2s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.05) 0%, 
    rgba(99, 102, 241, 0.03) 50%, 
    rgba(59, 130, 246, 0.05) 100%);
  border-radius: 24px;
  z-index: 0;
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 12px 40px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
}



.card-tag {
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.9) 0%, 
    rgba(99, 102, 241, 0.9) 100%);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 25px;
  margin-bottom: 20px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.card-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  z-index: 1;
  position: relative;
  width: auto;
  margin: 0 4rem;
  box-sizing: border-box;
  text-align: left;
  order: 2;
  height: 237px;
  gap: 20px;
}

.card-logo {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  width: 460px;
  height: 237px;
  flex-shrink: 0;
  order: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.card-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(59, 130, 246, 0.3);
}

.card-logo img {
  width: 315px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.card-info {
  flex: 1;
  z-index: 1;
  position: relative;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--color-yellow);
  
}

.rating-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-yellow);
}

.stars i {
  color: var(--color-yellow);
  margin-right: 2px;
}

.votes {
  font-size: 1rem;
  opacity: 0.8;
}

.bonus-text {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, 
    var(--color-white) 0%, 
    rgba(59, 130, 246, 0.9) 50%, 
    var(--color-white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  line-height: 1.3;
  z-index: 1;
  position: relative;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-action {
  text-align: right;
  z-index: 1;
  position: relative;
}

.btn-gradient {
  display: inline-block;
  background: linear-gradient(45deg, var(--color-purple-gradient-3), var(--color-purple-gradient-4), var(--color-purple-gradient-5));
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 12px 8.4rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gradient:hover {
  transform: translateY(-2px);
}
.btn-gradient_age {
  display: inline-block;
  border: none;
  background: linear-gradient(45deg, var(--color-purple-gradient-3), var(--color-purple-gradient-4), var(--color-purple-gradient-5));
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 12px 4.6rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gradient_age:hover {
  transform: translateY(-2px);
}
.btn-gradient_age_no {
  position: relative;
  display: inline-block;
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 12px 4.6rem;
  border-radius: 8px;
  background: linear-gradient(45deg, var(--color-purple-gradient-3), var(--color-purple-gradient-4), var(--color-purple-gradient-5));
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border: none;
}

.btn-gradient_age_no::before {
  content: 'Não';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: var(--color-bg-dark);
  border-radius: 7px;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .btn-gradient_age_no, .btn-gradient_age {
    padding: 12px 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .btn-gradient_age_no, .btn-gradient_age {
    padding: 12px 44px;
  }
}

.btn-gradient_age_no span {
  position: relative;
  z-index: 1;
}

.btn-gradient_age_no:focus {
  border: none;
}

.btn-gradient_age_no:active {
  border: none;
}

.btn-gradient_age_no:hover {
  transform: translateY(-2px);
}



.min-deposit {
  margin-top: 12px;
  font-size: 1rem;
  opacity: 0.8;
  color: var(--color-white);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
/* ===== Info Section ===== */
.info-section {
  padding: 100px 0;
  color: var(--color-text-light);
  background: 
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.95),
      rgba(30, 41, 59, 0.9),
      rgba(15, 23, 42, 0.95)
    ),
    url('../img/bg-bot.png') no-repeat bottom center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  z-index: 1;
}


.info-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ===== Info Grid ===== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 50px 0;
  max-width: 1000px;
  width: 100%;
}

/* Заголовки */
.info-section h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-white), var(--color-purple-gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.info-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.info-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  color: var(--color-text-light);
}

.info-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.info-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out both;
}

.info-section ul li:nth-child(1) { animation-delay: 0.8s; }
.info-section ul li:nth-child(2) { animation-delay: 1s; }
.info-section ul li:nth-child(3) { animation-delay: 1.2s; }
.info-section ul li:nth-child(4) { animation-delay: 1.4s; }
.info-section ul li:nth-child(5) { animation-delay: 1.6s; }

.info-section ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-purple-gradient-2);
  font-size: 0.8rem;
  line-height: 1.6;
  font-weight: bold;
}

/* Повтор ключевых кадров */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* ===== Info Item ===== */
.info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  padding: 40px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
  border-radius: 24px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.03) 0%, 
    rgba(99, 102, 241, 0.02) 100%);
  border-radius: 24px;
  z-index: 0;
}

.info-item:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.08) 0%, 
    rgba(255, 255, 255, 0.04) 100%);
}

.info-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.info-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-purple-gradient-2);
  margin: 20px 0 10px 0;
  text-align: left;
}

.info-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.info-content li {
  margin-bottom: 8px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== Info Grid Responsive ===== */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0;
  }
  
  .info-item {
    padding: 30px;
    gap: 20px;
  }
  
  .info-icon {
    width: 60px;
    height: 60px;
  }
  
  .info-icon i {
    font-size: 28px;
  }
  
  .info-item h3 {
    font-size: 1.5rem;
  }
  
  .info-content h4 {
    font-size: 1.1rem;
  }
}

.info-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.info-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.info-icon i {
  font-size: 32px;
  color: var(--color-white);
}

.info-item h3 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-white);
  text-align: flex-start;
}

/* ===== FAQ Section ===== */
.faq {
  padding: 0 0 100px 0;
  color: var(--color-text-light);
  background: none;
  position: relative;
  z-index: 2;
}

.faq-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-white), var(--color-purple-gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  width: 100%;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ===== FAQ Item Base Styles ===== */
.faq-item {
  margin-bottom: 30px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out both;
  position: relative;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.1) 0%, 
    rgba(59, 130, 246, 0.05) 50%, 
    rgba(99, 102, 241, 0.1) 100%);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.faq-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(59, 130, 246, 0.25),
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item.open {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.05));
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 
    0 12px 40px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.faq-item:nth-child(odd) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(even) {
  animation-delay: 0.6s;
}

.faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 35px 80px 35px 35px;
  cursor: pointer;
  position: relative;
  color: var(--color-white);
  margin: 0;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.5;
  display: flex;
  align-items: center;
  min-height: 80px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
  border-radius: 24px;
  gap: 15px;
}

.faq-title i {
  font-size: 1.3rem;
  color: var(--color-purple-gradient-2);
  transition: all 0.4s ease;
}

.faq-item:hover .faq-title {
  color: var(--color-purple-gradient-2);
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.1) 0%, 
    rgba(99, 102, 241, 0.05) 100%);
  transform: translateX(8px);
}

.faq-item:hover .faq-title i {
  color: var(--color-white);
  transform: scale(1.1);
}

.faq-item.open .faq-title {
  color: var(--color-white);
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.15) 0%, 
    rgba(99, 102, 241, 0.08) 100%);
  border-radius: 24px 24px 0 0;
}

.faq-item.open .faq-title i {
  color: var(--color-white);
  transform: scale(1.05);
}

.faq-title::after {
  content: "\f067"; /* FontAwesome plus */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--color-white);
  font-size: 20px;
  box-shadow: 
    0 8px 25px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover .faq-title::after {
  background: linear-gradient(135deg, var(--color-purple-gradient-2), var(--color-purple-gradient-1));
  box-shadow: 
    0 12px 35px rgba(59, 130, 246, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.open .faq-title::after {
  content: "\f068"; /* FontAwesome minus */
  background: linear-gradient(135deg, var(--color-purple-gradient-2), var(--color-purple-gradient-1));
  transform: translateY(-50%) scale(1.05);
  box-shadow: 
    0 10px 30px rgba(59, 130, 246, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}


.faq-text {
  max-height: 0;
  overflow: hidden;
  padding: 0 35px;
  font-size: 1.15rem;
  line-height: 1.8;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.03) 0%, 
    rgba(255, 255, 255, 0.01) 100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  color: var(--color-text-light);
  z-index: 2;
  position: relative;
  border-radius: 0 0 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item.open .faq-text {
  max-height: 800px;
  padding: 35px 35px 40px 35px;
  opacity: 1;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.08) 0%, 
    rgba(99, 102, 241, 0.03) 100%);
  border-top-color: rgba(59, 130, 246, 0.2);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 20px rgba(59, 130, 246, 0.1);
}

.faq-text p {
  margin-bottom: 20px;
  color: var(--color-text-light);
}

.faq-text p:last-child {
  margin-bottom: 0;
}

.faq-text ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.faq-text ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--color-text-light);
}

.faq-text ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-purple-gradient-2);
  font-size: 0.8rem;
  font-weight: bold;
}

/* Reuse fadeInUp */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* ===== Trust Section ===== */
.trust-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
  padding: 80px 0;
  text-align: center;
  color: var(--color-text-light);
  position: relative;
  z-index: 2;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.trust-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, var(--color-white), var(--color-purple-gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  position: relative;
  z-index: 2;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.trust-badge_v2 {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.trust-badge {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-purple-gradient-2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.trust-badge img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
  filter: brightness(0.9);
}

/* Разные высоты для каждого элемента */
.trust-badge:nth-child(1) img {
  height: 65px;
}

.trust-badge:nth-child(2) img {
  height: 70px;
}

.trust-badge:nth-child(4) img {
  height: 20px;
}

.trust-badge:nth-child(5) img {
  height: 60px;
}

.trust-badge:nth-child(6) img {
  height: 60px;
}

.trust-badge:nth-child(7) img {
  height: 50px;
}

.trust-badge:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-purple-dark) 100%);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  z-index: 0;
}



/* ===== Age Restriction Icon in Footer ===== */
.footer .age-restriction-icon {
  width: 80px;
  height: 80px;
}

/* Trust Section */
.footer-trust {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.trust-header {
  text-align: center;
  margin-bottom: 40px;
}

.trust-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.trust-title i {
  font-size: 1.8rem;
  color: var(--color-purple-gradient-2);
}

.trust-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-badge {
  flex: 0 0 calc(25% - 19px);
  min-width: 150px;
  max-width: 200px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}

.trust-badge:hover::before {
  opacity: 1;
}

.trust-badge a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-white);
  position: relative;
  z-index: 1;
  height: 100%;
}

.trust-badge img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

.trust-badge:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}


.trust-badge .age-restriction-icon {
  background: linear-gradient(45deg, #6b7280, #9ca3af, #6b7280);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.trust-badge .age-restriction-icon::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #374151;
  border-radius: 50%;
  z-index: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge .age-restriction-icon:hover {
  background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  transform: scale(1.05);
}

.trust-badge .age-restriction-icon:hover::before {
  background: var(--color-bg-dark);
}

.trust-badge .age-restriction-icon span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d1d5db;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge .age-restriction-icon:hover span {
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Main Footer Content */
.footer-main {
  padding: 60px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 40px;
  height: auto;
}

.footer-brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-light);
  opacity: 0.9;
  margin: 0;
}

.footer-stats {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-purple-gradient-2);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  opacity: 0.8;
}

.footer-nav-section,
.footer-legal-section,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 15px 0;
  position: relative;
}

.footer-nav-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  border-radius: 1px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-radius: 6px;
}

.footer-link:hover {
  color: var(--color-purple-gradient-2);
  transform: translateX(5px);
}

.footer-link i {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--color-purple-gradient-2);
  width: 16px;
  text-align: center;
}

.footer-disclaimer {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
}

.footer-disclaimer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-disclaimer i {
  color: #ffc107;
  font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--color-purple-gradient-2);
  opacity: 1;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 68px;
}

.footer__col {
  flex: 1 1 200px;
}

.footer__logo {
  max-width: 140px;
  display: block;
  margin-bottom: 20px;
}

.footer__heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-white);
}

.footer__nav {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__group {
  display: flex;
  flex-direction: column;
}

.footer__link {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--color-white);
}

/* ===== Copyright ===== */
.footer__copyright {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 0;
  color: var(--color-white);
}
/* Banner Container */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%, 
    rgba(30, 41, 59, 0.95) 50%, 
    rgba(51, 65, 85, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--color-white);
  z-index: 999;
  box-shadow: 
    0 -8px 32px rgba(0, 0, 0, 0.3),
    0 -2px 8px rgba(59, 130, 246, 0.1);
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ===== Age Gate ===== */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.9) 0%, 
    rgba(15, 23, 42, 0.95) 50%, 
    rgba(0, 0, 0, 0.9) 100%);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.age-gate__dialog {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%, 
    rgba(30, 41, 59, 0.95) 50%, 
    rgba(51, 65, 85, 0.95) 100%);
  backdrop-filter: blur(20px);
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;
  max-width: 400px;
  color: var(--color-white);
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 8px 32px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  animation: slideInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.age-gate__dialog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.1) 0%, 
    rgba(99, 102, 241, 0.05) 50%, 
    rgba(59, 130, 246, 0.1) 100%);
  border-radius: 24px;
  z-index: 0;
}

.age-gate__dialog h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-white);
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--color-purple-gradient-1), var(--color-purple-gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-gate__dialog p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  color: var(--color-text-light);
  opacity: 0.9;
}

.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-age {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-age--yes {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-age--yes:hover {
  background: var(--color-white-dark);
}



.btn-age--no {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid var(--color-white);
}

.btn-age--no:hover {
  background: rgba(255,215,0,0.1);
}

/* Inner Wrapper */
.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

/* Text */
.cookie-banner__text {
  flex: 1 1 300px;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--color-white);
  font-weight: 400;
  opacity: 0.95;
}

/* Button Group */
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}

/* Base Button */
.cookie-btn {
  position: relative;
  font-family: var(--font-base);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  min-width: 120px;
  text-align: center;
}

/* Accept Button */
.cookie-btn--accept {
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.9) 0%, 
    rgba(99, 102, 241, 0.9) 100%);
  color: var(--color-white);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.cookie-btn--accept::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.1) 0%, 
    rgba(99, 102, 241, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.cookie-btn--accept:hover::before {
  opacity: 1;
}

.cookie-btn--accept span {
  position: relative;
  z-index: 1;
}

/* Decline Button */
.cookie-btn--decline {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn--decline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.cookie-btn--decline:hover::before {
  opacity: 1;
}

.cookie-btn--decline span {
  position: relative;
  z-index: 1;
}

/* Hover effects */
.cookie-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cookie-btn--accept:hover {
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.cookie-btn--decline:hover {
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}


/* ===== Contact Section ===== */
.contact-section {
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
  color: var(--color-text-light);
}

.contact-section .container {
  margin: 0 auto;
}

/* Title */
.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
  
  display: inline-block;
  padding-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Intro paragraphs */
.contact-intro,
.contact-note {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out both;
}

.contact-intro { animation-delay: 0.4s; }
.contact-note  { animation-delay: 0.6s; }

/* Contact details block */
.contact-details {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 8px;
  margin: 2rem 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.contact-details p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.contact-details a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: var(--color-white);
}

/* Thank-you note */
.contact-thanks {
  font-size: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1s both;
}

/* Reuse fadeInUp keyframes */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* ===== About Section ===== */
.about-section {
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
  color: var(--color-text-light);
  margin-bottom: 0; /* Убираем отступ снизу */
}

.about-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Main Title */
.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  border-bottom: 4px solid var(--color-white);
  padding-bottom: 8px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Subtitles */
.about-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-white);
  margin-top: 48px;
  margin-bottom: 16px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-subtitle::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-white);
  border-radius: 2px;
}

/* Paragraphs */
.about-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Reuse fadeInUp keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== Privacy Page Styles ===== */
.privacy-section {
  background: 
    linear-gradient(
      rgba(15, 23, 42, 0.8),
      rgba(30, 41, 59, 0.8)
    );
  color: var(--color-text-light);
}

.privacy-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Main title */
.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  border-bottom: 4px solid var(--color-white);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* "Last updated" line */
.privacy-updated {
  font-size: 0.875rem;
  color: var(--color-gray-light);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Intro paragraphs */
.privacy-intro,
.privacy-note {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Subtitles */
.privacy-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Paragraph text */
.privacy-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1s both;
}

/* Contact line */
.privacy-contact {
  font-size: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.privacy-contact a {
  color: var(--color-white);
  text-decoration: none;
}

/* ===== Cookie Page Styles ===== */
.cookie-section {
  background: 
    linear-gradient(
      rgba(15, 23, 42, 0.8),
      rgba(30, 41, 59, 0.8)
    );
  color: var(--color-text-light);
}

.cookie-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Main title */
.cookie-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  border-bottom: 4px solid var(--color-white);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* "Last updated" line */
.cookie-updated {
  font-size: 0.875rem;
  color: var(--color-gray-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Intro */
.cookie-intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Subtitles */
.cookie-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Text paragraphs */
.cookie-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1s both;
}

/* List of cookies */
.cookie-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.cookie-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.cookie-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-white);
}

/* Contact */
.cookie-contact {
  font-size: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.4s both;
}

.cookie-contact a {
  color: var(--color-white);
  text-decoration: none;
}

/* ===== Terms Page Styles ===== */
.terms-section {
  background: 
    linear-gradient(
      rgba(15, 23, 42, 0.8),
      rgba(30, 41, 59, 0.8)
    );
  color: var(--color-text-light);
}

.terms-section .container {
  margin: 0 auto;
}

/* Main title */
.terms-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  border-bottom: 4px solid var(--color-white);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* "Last updated" line */
.terms-updated {
  font-size: 0.875rem;
  color: var(--color-gray-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Intro */
.terms-intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Subtitles */
.terms-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Text paragraphs */
.terms-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1s both;
}

/* Contact line */
.terms-contact {
  font-size: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

a {
  text-decoration: none;
}

.terms-contact a {
  color: var(--color-white);
  text-decoration: none;
}

/* ===== Reuse fadeInUp keyframes ===== */
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.site-header img {
	width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== FULL RESPONSIVE DESIGN ===== */

/* Mobile First - 480px and below */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  .container {
    width: 100%;
    flex-direction: column;
  }
  
  /* ===== Header ===== */
  .site-header {
    padding: 10px 0;
  }
  
  .site-header img {
    width: 60px;
    height: auto;
  }
  
  /* ===== Hero Section ===== */
  .hero {
    padding: 30px 0;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    
    
  }
  
  .hero-container {
    flex-direction: column;
    gap: 15px;
    padding: 0 30px;
  }
  
  .hero-content {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
  }
  
  .age-restriction-icon {
    width: 50px;
    height: 47px;
    background: linear-gradient(45deg, #6b7280, #9ca3af, #6b7280);
  }
  
  .age-restriction-icon::before {
    background: #374151;
  }
  
  .age-restriction-icon span {
    font-size: 1rem;
    color: #d1d5db;
  }
  
  .update-date {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .stat-item {
    min-width: auto;
    padding: 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-features {
    gap: 20px;
    margin: 30px 0;
  }
  
  .hero-feature {
    min-width: 120px;
    padding: 15px;
  }
  
  .hero-feature i {
    font-size: 1.5rem;
  }
  
  .hero-feature span {
    font-size: 0.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
    justify-content: center;
  }
  
  .section-title {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .section-title i {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .casinos-section {
    padding: 50px 0;
  }
  
  .hero-features {
    gap: 15px;
    align-items: flex-start;
    width: 100%;
  }
  
  .hero-features li {
    gap: 12px;
  }
  

  
  .feature-text {
    font-size: 0.9rem;
  }
  
  .feature-icon-img {
    width: 28px;
    height: 28px;
  }
  
  .hero-image {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    margin-top: 15px;
  }
  
  .hero-image img {
    max-width: 90%;
    border-radius: 8px;
  }
  
  /* ===== Casino Card ===== */
  .casino-card {
    padding: 15px;
    gap: 15px;
    flex-direction: column;
    text-align: center;
    margin: 20px 0;
  }
  
  .casino-card::before {
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 18px;
  }
  

  
  .card-tag {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 15px;
    margin-bottom: 10px;
  }
  
  .card-logo {
    width: 100%;
    height: auto;
    padding: 20px;
    order: 1;
    border-radius: 12px;
  }
  
  .card-logo img {
    width: 280px;
    max-width: 100%;
  }
  
  .card-right {
    order: 2;
    width: 100%;
    margin: 0;
    height: auto;
  }
  
  .rating {
    justify-content: center;
    margin-bottom: 6px;
  }
  
  .rating-value {
    font-size: 1.2rem;
  }
  
  .votes {
    font-size: 0.85rem;
  }
  
  .bonus-text {
    font-size: 1.2rem;

    line-height: 1.2;
  }
  
  .card-action {
    text-align: center;
  }
  
  .btn-gradient {
    padding: 10px 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 200px;
    border-radius: 6px;
  }
  
  .min-deposit {
    margin-top: 8px;
    font-size: 0.8rem;
  }
  
  /* ===== Info Section ===== */
  .info-section {
    padding: 30px 0;
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
  }
  
  .info-section .container {
    padding: 0 30px;
  }
  
  .info-section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    border-bottom: 2px solid var(--color-white);
  }
  
  .info-section h3 {
    font-size: 1.2rem;

  }
  
  .info-section p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
  }
  
  .info-item h3 {
    font-size: 1.4rem;
  }
  
  .info-section ul li {
    font-size: 0.9rem;
    padding-left: 20px;
    margin-bottom: 0.6rem;
  }
  
  .info-section ul li::before {
    font-size: 0.6rem;
  }
  
  /* ===== FAQ Section ===== */
  .faq {
    padding: 0 0 30px 0;
  }
  
  .faq-main-title {
    font-size: 1.6rem;
    padding-bottom: 0.3rem;
  }
  
  /* ===== FAQ Item - Mobile 480px ===== */
  /* Только размеры и отступы, цвета наследуются из базовых стилей */
  .faq-item {
    padding: 15px;
    border-radius: 20px;
  }
  
  .faq-item::before {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 17px;
  }
  
  .faq-title {
    padding: 0 40px 12px 0;
    margin-bottom: 8px;
  }
  
  .faq-title::after {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 6px;
  }
  
  .faq-title {
    font-size: 1.2rem;
    padding: 25px 60px 25px 25px;
    min-height: 60px;
    gap: 10px;
  }
  
  .faq-title i {
    font-size: 1.1rem;
  }
  
  .faq-title::after {
    width: 40px;
    height: 40px;
    right: 15px;
    font-size: 16px;
    content: "\f067"; /* FontAwesome plus */
  }
  
  .faq-text {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 25px;
  }
  
  .faq-item.open .faq-text {
    padding: 25px 25px 30px 25px;
  }
  
  .faq-item.open .faq-title::after {
    content: "\f068"; /* FontAwesome minus */
  }
  
  /* ===== Trust Section ===== */
  .trust-section {
    padding: 25px 0;
  }
  
  .trust-title {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .trust-badges {
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .trust-badge img {
    height: 100px;
    width: auto;
  }
  
  /* ===== Footer ===== */
  .footer-trust {
    padding: 30px 0;
  }
  
  .trust-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .trust-subtitle {
    font-size: 1rem;
  }
  
  .trust-badges {
    gap: 15px;
  }
  
  .trust-badge {
    flex: 0 0 calc(50% - 8px);
    min-width: 120px;
    padding: 15px;
  }
  
  .trust-badge img {
    height: 30px;
  }
  
  
  .footer-main {
    padding: 40px 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-stats {
    justify-content: center;
    gap: 20px;
  }
  
  .footer-nav-section,
  .footer-legal-section,
  .footer-contact {
    align-items: center;
  }
  
  .footer-nav-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer__heading {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .footer__nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer__group {
    align-items: center;
  }
  
  .footer__link {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
  
  .footer__copyright {
    font-size: 0.75rem;
  }
  
  /* ===== Age Gate ===== */
  .age-gate__dialog {
    padding: 25px 20px;
    max-width: 280px;
    border-radius: 10px;
  }
  
  .age-gate__dialog h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .age-gate__dialog p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .btn-age {
    padding: 8px 0;
    font-size: 0.85rem;
    border-radius: 5px;
  }
  
  /* ===== Cookie Banner ===== */
  .cookie-banner__inner {
    padding: 20px 20px;
    flex-direction: column;
    gap: 20px;
  }
  
  .cookie-banner__text {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.5;
  }
  
  .cookie-banner__actions {
    justify-content: center;
    gap: 12px;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .cookie-btn {
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 10px;
    min-width: 120px;
    flex: 1;
    max-width: 140px;
  }
  

  
  .about-title,
  .contact-title,
  .privacy-title,
  .cookie-title,
  .terms-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about-subtitle,
  .privacy-subtitle,
  .cookie-subtitle,
  .terms-subtitle {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .about-text,
  .contact-intro,
  .contact-note,
  .privacy-intro,
  .privacy-note,
  .privacy-text,
  .cookie-intro,
  .cookie-text,
  .terms-intro,
  .terms-text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  
  .contact-details {
    padding: 15px;
    margin: 1.5rem 0;
  }
  
  .cookie-list li {
    font-size: 0.9rem;
    padding-left: 18px;
  }
  

}

/* Extra Small Mobile - 480px and below */
@media (max-width: 480px) {
  .cookie-banner__inner {
    padding: 15px 20px;
    gap: 20px;
  }
  
  .cookie-banner__text {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .cookie-banner__actions {
    gap: 12px;
  }
  
  .cookie-btn {
    padding: 18px 24px;
    font-size: 1.1rem;
    min-width: 180px;
    max-width: 250px;
  }
  

  
  .contact-title,
  .about-title,
  .privacy-title,
  .cookie-title,
  .terms-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    border-bottom: 2px solid var(--color-white);
    padding-bottom: 0.3rem;
  }
  
  .about-subtitle,
  .privacy-subtitle,
  .cookie-subtitle,
  .terms-subtitle {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
  }
  
  .about-subtitle::before {
    width: 3px;
    left: -12px;
  }
  
  .contact-intro,
  .contact-note,
  .about-text,
  .privacy-intro,
  .privacy-note,
  .privacy-text,
  .cookie-intro,
  .cookie-text,
  .terms-intro,
  .terms-text {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .privacy-updated,
  .cookie-updated,
  .terms-updated {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }
  
  .contact-details {
    padding: 15px;
    margin: 1.5rem 0;
    border-radius: 6px;
  }
  
  .contact-details p {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  
  .cookie-list li {
    font-size: 0.9rem;
    padding-left: 18px;
    margin-bottom: 0.6rem;
  }
}

/* Tablet - 768px and below */
@media (min-width: 481px) and (max-width: 768px) {
  body {
    font-size: 15px;
  }
  
  .container {
    width: 100%;
    padding: 0 10px;
  }
  
  /* ===== Header ===== */
  .site-header {
    padding: 12px 0;
  }
  
  .site-header img {
    width: 75px;
    height: auto;
  }
  
  /* ===== Hero Section ===== */
  .hero {
    padding: 50px 0 35px 0;
    background-size: cover;
  }
  
  .hero-container {
    flex-direction: column;
    gap: 25px;
    padding: 0 30px;
  }
  
  .hero-content {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
  }
  
  .age-restriction-icon {
    width: 56px;
    height: 52px;
    background: linear-gradient(45deg, #6b7280, #9ca3af, #6b7280);
  }
  
  .age-restriction-icon::before {
    background: #374151;
  }
  
  .age-restriction-icon span {
    font-size: 1.1rem;
    color: #d1d5db;
  }
  
  .update-date {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .hero-title {
    font-size: 3rem;
    margin-bottom: 25px;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .hero-stats {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .stat-item {
    padding: 18px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .hero-actions {
    gap: 18px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 1.05rem;
  }
  
  .hero-features {
    gap: 20px;
    align-items: flex-start;
    width: 100%;
  }
  
  .hero-features li {
    gap: 12px;
  }

  
  .feature-text {
    font-size: 0.95rem;
  }
  
  .hero-image {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  
  .hero-image img {
    max-width: 85%;
    border-radius: 10px;
  }
  
  /* ===== Casino Card ===== */
  .casino-card {
    padding: 25px;
    gap: 20px;
    flex-direction: column;
    text-align: center;
    margin: 25px 0;
  }
  
  .casino-card::before {
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 18px;
  }
  

  
  .card-tag {
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 18px;
    margin-bottom: 12px;
  }
  
  .card-logo {
    width: 350px;
    height: 200px;
    padding: 35px;
    order: 1;
    border-radius: 14px;
    margin: 0 auto;
  }
  
  .card-logo img {
    width: 220px;
    max-width: 100%;
  }
  
  .card-right {
    order: 2;
    width: 100%;
    margin: 0;
    height: auto;
  }
  
  .rating {
    justify-content: center;
    margin-bottom: 8px;
  }
  
  .rating-value {
    font-size: 1.4rem;
  }
  
  .votes {
    font-size: 0.95rem;
  }
  
  .bonus-text {
    font-size: 1.6rem;

    line-height: 1.3;
  }
  
  .card-action {
    text-align: center;
  }
  
  .btn-gradient {
    padding: 12px 3rem;
    font-size: 1rem;
    width: auto;
    max-width: 280px;
    border-radius: 7px;
  }
  
  .min-deposit {
    margin-top: 10px;
    font-size: 1rem;
  }
  
  /* ===== Info Section ===== */
  .info-section {
    padding: 45px 0;
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
  }
  
  .info-section .container {
    padding: 0 20px;
  }
  
  .info-section h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--color-white);
  }
  
  .info-section h3 {
    font-size: 1.5rem;

  }
  
  .info-section p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .info-icon {
    width: 55px;
    height: 55px;
  }
  
  .info-item h3 {
    font-size: 1.6rem;
  }
  
  .info-section ul li {
    font-size: 1rem;
    padding-left: 22px;
    margin-bottom: 0.7rem;
  }
  
  .info-section ul li::before {
    font-size: 0.7rem;
  }
  
  /* ===== FAQ Section ===== */
  .faq {
    padding: 0 0 45px 0;
  }
  
  .faq-main-title {
    font-size: 2.1rem;
    margin-bottom: 1.3rem;
    padding-bottom: 0.4rem;
  }
  
  /* ===== FAQ Item - Tablet 768px ===== */
  .faq-item {
    border-radius: 20px;
  }
  
  .faq-title {
    font-size: 1.3rem;
    padding: 30px 70px 30px 30px;
    min-height: 70px;
    gap: 12px;
  }
  
  .faq-title i {
    font-size: 1.2rem;
  }
  
  .faq-title::after {
    width: 45px;
    height: 45px;
    right: 20px;
    font-size: 18px;
    content: "\f067"; /* FontAwesome plus */
  }
  
  .faq-text {
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 0 30px;
  }
  
  .faq-item.open .faq-text {
    padding: 30px 30px 35px 30px;
  }
  
  .faq-item.open .faq-title::after {
    content: "\f068"; /* FontAwesome minus */
  }
  
  /* ===== Trust Section ===== */
  .trust-section {
    padding: 35px 0;
  }
  
  .trust-title {
    font-size: 1rem;
    margin-bottom: 50px;
  }
  
  .trust-badges {
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  
  .trust-badge img {
    height: 80px;
    width: auto;
  }
  
  /* ===== Footer ===== */
  .footer-trust {
    padding: 40px 0;
  }
  
  .trust-title {
    font-size: 1.8rem;
  }
  
  .trust-badges {
    gap: 20px;
  }
  
  .trust-badge {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 140px;
  }
  
  .footer-main {
    padding: 50px 0 35px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-stats {
    justify-content: center;
  }
  
  .footer__heading {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .footer__nav {
    flex-direction: row;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer__group {
    align-items: flex-start;
  }
  
  .footer__link {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  
  .footer__copyright {
    font-size: 0.875rem;
  }

  
  .contact-title,
  .about-title,
  .privacy-title,
  .cookie-title,
  .terms-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    border-bottom: 4px solid var(--color-white);
    padding-bottom: 0.5rem;
  }
  
  .about-subtitle,
  .privacy-subtitle,
  .cookie-subtitle,
  .terms-subtitle {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .age-gate__dialog {
    padding: 30px 25px;
    max-width: 350px;
    border-radius: 12px;
  }
  
  .age-gate__dialog h2 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
  
  .cookie-banner__inner {
    padding: 12px 20px;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  
  .cookie-banner__text {
    font-size: 0.9rem;
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }
  
  .cookie-banner__actions {
    gap: 15px;
  }
  
  .cookie-btn {
    padding: 14px 28px;
    min-width: 140px;
  }
  

  
  .about-title,
  .contact-title,
  .privacy-title,
  .cookie-title,
  .terms-title {
    font-size: 2.2rem;
  }
  
  .about-subtitle,
  .privacy-subtitle,
  .cookie-subtitle,
  .terms-subtitle {
    font-size: 1.7rem;
  }
}

/* Small Desktop - 1024px and below */
@media (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }
  
  /* ===== Header ===== */
  .site-header {
    padding: 15px 0;
  }
  
  .site-header img {
    width: 85px;
    height: auto;
  }
  
  /* ===== Hero Section ===== */
  .hero {
    padding: 65px 0 45px 0;
    background-size: cover;
  }
  
  .hero-container {
    flex-direction: row;
    gap: 30px;
    align-items: center;
  }
  
  .hero-content {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left;
  }
  
  .update-date {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .hero-title {
    font-size: 3.2rem;
    margin-bottom: 18px;
    
    padding-bottom: 8px;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  .hero-features {
    justify-content: flex-start;
    gap: 18px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .hero-features li {
    font-size: 1rem;
    padding: 8px 14px;
  }
  
  .hero-features li i {
    font-size: 1.2rem;
    margin-right: 8px;
  }
  
  .hero-image {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: right;
  }
  
  .hero-image img {
    max-width: 100%;
    border-radius: 12px;
  }
  
  /* ===== Casino Card ===== */
  .casino-card {
    padding: 30px;
    gap: 25px;
    flex-direction: row;
    text-align: left;
    margin: 30px 0;
    align-items: center;
  }
  
  .casino-card::before {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 17px;
  }
  

  
  .card-tag {
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 18px;
    margin-bottom: 0;
    align-self: flex-start;
  }
  
  .card-logo {
    width: 380px;
    height: 210px;
    padding: 40px;
    order: 1;
    border-radius: 15px;
    flex-shrink: 0;
  }
  
  .card-logo img {
    width: 260px;
    max-width: 100%;
  }
  
  .card-right {
    order: 2;
    flex: 1;
    height: 210px;
    margin: 0 2rem;
  }
  
  .rating {
    justify-content: flex-start;
    margin-bottom: 8px;
  }
  
  .rating-value {
    font-size: 1.5rem;
  }
  
  .votes {
    font-size: 1rem;
  }
  
  .bonus-text {
    font-size: 1.2em;
    line-height: 1.4;
    text-align: center;
  }
  
  .card-action {
    text-align: center;
  }
  
  .btn-gradient {
    padding: 12px 5rem;
    font-size: 1.1rem;
    width: auto;
    border-radius: 8px;
  }
  
  .min-deposit {
    margin-top: 12px;
    font-size: 1.1rem;
    text-align: center;
  }
  
  /* ===== Casino Card ===== */
  .casino-card {
    padding: 30px;
    gap: 25px;
    flex-direction: row;
    text-align: left;
    margin: 30px 0;
    align-items: stretch;
  }
  
  .casino-card::before {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 17px;
  }
  

  
  .card-tag {
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 18px;
    margin-bottom: 0;
    align-self: flex-start;
  }
  
  .card-logo {
    width: 380px;
    height: 210px;
    padding: 40px;
    border-radius: 15px;
    flex-shrink: 0;
  }
  
  .card-logo img {
    width: 260px;
    max-width: 100%;
  }
  
  .card-info {
    order: 1;
    text-align: left;
    margin-bottom: 15px;
  }
  
  .rating {
    justify-content: flex-start;
    margin-bottom: 8px;
  }
  
  .rating-value {
    font-size: 1.5rem;
  }
  
  .votes {
    font-size: 1rem;
  }
  
  .bonus-text {
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: left;
  }
  
  .card-action {
    text-align: left;
    order: 3;
  }
  
  .btn-gradient {
    padding: 12px 5rem;
    font-size: 1.1rem;
    width: auto;
    border-radius: 8px;
  }
  
  .min-deposit {
    margin-top: 12px;
    font-size: 1.1rem;
    text-align: left;
  }
  
  /* ===== Info Section ===== */
  .info-section {
    padding: 55px 0;
    background-size: cover;
  }
  
  .info-section .container {
    padding: 0 30px;
    flex-direction: column;
  }
  
  .info-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    border-bottom: 4px solid var(--color-white);
    padding-bottom: 0.5rem;
  }
  
  .info-section h3 {
    font-size: 1.65rem;

  }
  
  .info-section p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .info-section ul li {
    font-size: 1rem;
    padding-left: 24px;
    margin-bottom: 0.75rem;
  }
  
  .info-section ul li::before {
    font-size: 0.75rem;
  }
  
  /* ===== FAQ Section ===== */
  .faq {
    padding: 0 0 55px 0;
  }
  
  .faq-main-title {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    text-align: center;
  }
  
  /* ===== FAQ Item - Small Desktop 1024px ===== */
  /* Только размеры и отступы, цвета наследуются из базовых стилей */
  .faq-item {
    padding: 22px;
    border-radius: 23px;
  }
  
  .faq-item::before {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 20px;
  }
  
  .faq-title {
    padding: 0 50px 16px 0;
    margin-bottom: 12px;
  }
  
  .faq-title::after {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
    content: "\f067"; /* FontAwesome plus */
  }
  
  .faq-text {
   
    line-height: 1.6;
  }
  
  /* ===== Trust Section ===== */
  .trust-section {
    padding: 38px 0;
  }
  
  .trust-title {
    font-size: 1.65rem;
    margin-bottom: 55px;
  }
  
  .trust-badges {
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 55px;
  }
  
  .trust-badge img {
    height: 36px;
  }
  
  /* ===== Footer ===== */
  .footer {
    padding: 38px 0 22px;
  }
  
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 35px;
    text-align: left;
    margin-bottom: 55px;
    justify-content: space-between;
  }
  
  .footer__col {
    flex: 1 1 220px;
    min-width: 220px;
  }
  
  .footer__logo {
    max-width: 130px;
    margin: 0 0 20px 0;
  }
  
  .footer__heading {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .footer__nav {
    flex-direction: row;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer__group {
    align-items: flex-start;
  }
  
  .footer__link {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  
  .footer__copyright {
    font-size: 0.875rem;
  }
  
  /* ===== Other Sections ===== */

  
  .contact-title,
  .about-title,
  .privacy-title,
  .cookie-title,
  .terms-title {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    border-bottom: 5px solid var(--color-white);
    padding-bottom: 0.6rem;
  }
  
  .about-subtitle,
  .privacy-subtitle,
  .cookie-subtitle,
  .terms-subtitle {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .about-subtitle::before {
    width: 4px;
    left: -16px;
  }
  
  .age-gate__dialog {
    padding: 35px 30px;
    max-width: 380px;
    border-radius: 12px;
  }
  
  .age-gate__dialog h2 {
    font-size: 1.7rem;
    margin-bottom: 16px;
  }
  
  .cookie-banner__inner {
    padding: 12px 30px;
    flex-direction: row;
    gap: 25px;
    align-items: center;
  }
  
  .cookie-banner__text {
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }
}

/* Medium Desktop - 1025px to 1360px */
@media (min-width: 1025px) and (max-width: 1360px) {
  body {
    font-size: 16px;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }
  
  /* ===== Header ===== */
  .site-header {
    padding: 18px 0;
  }
  
  .site-header img {
    width: 90px;
    height: auto;
  }
  
  /* ===== Hero Section ===== */
  .hero {
    padding: 75px 0 55px 0;
    background-size: 100% 100%;
  }
  
  .hero-container {
    flex-direction: row;
    gap: 35px;
    align-items: center;
  }
  
  .hero-content {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left;
  }
  
  .update-date {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .hero-title {
    font-size: 3.6rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  
  .hero-features {
    justify-content: flex-start;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .hero-features li {
    font-size: 1rem;
    padding: 8px 12px;
  }
  
  .hero-features li i {
    font-size: 1.25rem;
    margin-right: 8px;
  }
  
  .hero-image {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: right;
  }
  
  .hero-image img {
    max-width: 100%;
    border-radius: 12px;
  }
  
  /* ===== Casino Card ===== */
  .casino-card {
    padding: 35px;
    gap: 28px;
    flex-direction: row;
    text-align: left;
    margin: 35px 0;
    align-items: stretch;
  }
  
  .casino-card::before {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 17px;
  }
  

  
  .card-tag {
    font-size: 0.875rem;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 0;
    align-self: flex-start;
  }
  
  .card-logo {
    width: 420px;
    height: 225px;
    padding: 45px;
    order: 1;
    border-radius: 16px;
    flex-shrink: 0;
  }
  
  .card-logo img {
    width: 290px;
    max-width: 100%;
  }
  
  .card-right {
    order: 2;
    flex: 1;
    height: 225px;
    margin: 0 3rem;
  }
  
  .rating {
    justify-content: flex-start;
    margin-bottom: 8px;
  }
  
  .rating-value {
    font-size: 1.5rem;
  }
  
  .votes {
    font-size: 1rem;
  }
  
  .bonus-text {
    font-size: 1.5em;
    line-height: 1.4;
    text-align: center;
  }
  
  .card-action {
    text-align: center;
  }
  
  .btn-gradient {
    padding: 12px 6.5rem;
    font-size: 1.15rem;
    width: auto;
    border-radius: 8px;
  }
  
  .min-deposit {
    margin-top: 12px;
    font-size: 1.15rem;
    text-align: center;
  }
  
  /* ===== Info Section ===== */
  .info-section {
    padding: 60px 0;
    background-size: 100% 100%;
  }
  
  .info-section .container {
    padding: 0 40px;
    flex-direction: column;
  }
  
  .info-section h2 {
    font-size: 2.45rem;
    margin-bottom: 1rem;
    border-bottom: 4px solid var(--color-white);
    padding-bottom: 0.5rem;
  }
  
  .info-section h3 {
    font-size: 1.72rem;

  }
  
  .info-section p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .info-section ul li {
    font-size: 1rem;
    padding-left: 24px;
    margin-bottom: 0.75rem;
  }
  
  .info-section ul li::before {
    font-size: 0.75rem;
  }
  
  /* ===== FAQ Section ===== */
  .faq {
    padding: 0 0 60px 0;
  }
  
  .faq-main-title {
    font-size: 2.45rem;
    margin-bottom: 1.5rem;
    
    padding-bottom: 0.5rem;
    text-align: center;
  }
  
  /* ===== FAQ Item - Medium Desktop 1360px ===== */
  /* Только размеры и отступы, цвета наследуются из базовых стилей */
  .faq-item {
    padding: 24px;
    border-radius: 25px;
  }
  
  .faq-item::before {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 22px;
  }
  
  .faq-title {
    padding: 0 50px 16px 0;
    margin-bottom: 12px;
  }
  
  .faq-title::after {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
    content: "\f067"; /* FontAwesome plus */
  }
  
  .faq-text {

    line-height: 1.6;
  }
  
  /* ===== Trust Section ===== */
  .trust-section {
    padding: 40px 0;
  }
  
  .trust-title {
    font-size: 1.75rem;
    margin-bottom: 60px;
  }
  
  .trust-badges {
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  
  .trust-badge img {
    height: 38px;
  }
  
  /* ===== Footer ===== */
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
    margin-bottom: 60px;
    justify-content: space-between;
  }
  
  .footer__col {
    flex: 1 1 240px;
    min-width: 240px;
  }
  
  .footer__logo {
    max-width: 140px;
    margin: 0 0 20px 0;
  }
  
  .footer__heading {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }
  
  .footer__nav {
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer__group {
    align-items: flex-start;
  }
  
  .footer__link {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  
  .footer__copyright {
    font-size: 0.875rem;
  }

  
  .contact-title,
  .about-title,
  .privacy-title,
  .cookie-title,
  .terms-title {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    border-bottom: 5px solid var(--color-white);
    padding-bottom: 0.6rem;
  }
  
  .about-subtitle,
  .privacy-subtitle,
  .cookie-subtitle,
  .terms-subtitle {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .about-subtitle::before {
    width: 4px;
    left: -16px;
  }
  
  .age-gate__dialog {
    padding: 40px 30px;
    max-width: 400px;
    border-radius: 12px;
  }
  
  .age-gate__dialog h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
  
  .cookie-banner__inner {
    padding: 12px 40px;
    flex-direction: row;
    gap: 30px;
    align-items: center;
  }
  
  .cookie-banner__text {
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }
}

/* Large Desktop - 1600px and below */
@media (min-width: 1361px) and (max-width: 1600px) {
  body {
    font-size: 16px;
  }
  
  .container {
    width: 1200px;
    max-width: 1200px;
  }
  
  /* ===== Header ===== */
  .site-header {
    padding: 20px 0;
  }
  
  .site-header img {
    width: 95px;
    height: auto;
  }
  
  /* ===== Hero Section ===== */
  .hero {
    padding: 80px 0 60px 0;
    background-size: 100% 100%;
  }
  
  .hero-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .hero-content {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left;
  }
  
  .update-date {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    
    padding-bottom: 8px;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  
  .hero-features {
    justify-content: flex-start;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .hero-features li {
    font-size: 1rem;
    padding: 8px 12px;
  }
  
  .hero-features li i {
    font-size: 1.25rem;
    margin-right: 8px;
  }
  
  .hero-image {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: right;
  }
  
  .hero-image img {
    max-width: 100%;
    border-radius: 12px;
  }
  
  /* ===== Casino Card ===== */
  .casino-card {
    padding: 40px;
    gap: 30px;
    flex-direction: row;
    text-align: left;
    margin: 40px 0;
    align-items: center;
  }
  
  .casino-card::before {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 17px;
  }

  
  .card-tag {
    font-size: 0.875rem;
    padding: 8px 24px;
    border-radius: 20px;
    margin-bottom: 0;
    align-self: flex-start;
  }
  
  .card-logo {
    width: 460px;
    height: 237px;
    padding: 50px;
    order: 1;
    border-radius: 16px;
    flex-shrink: 0;
  }
  
  .card-logo img {
    width: 315px;
    max-width: 100%;
  }
  
  .card-right {
    order: 2;
    flex: 1;
    height: 237px;
    margin: 0 3rem;
  }
  
  .rating {
    justify-content: flex-start;
    margin-bottom: 8px;
  }
  
  .rating-value {
    font-size: 1.5rem;
  }
  
  .votes {
    font-size: 1rem;
  }
  
  .bonus-text {
    font-size: 2rem;
    line-height: 1.4;
    text-align: center;
  }
  
  .card-action {
    text-align: center;
  }
  
  .btn-gradient {
    padding: 12px 8.4rem;
    font-size: 1.15rem;
    width: auto;
    border-radius: 8px;
  }
  
  .min-deposit {
    margin-top: 12px;
    font-size: 1.2rem;
    text-align: center;
  }
  
  /* ===== Info Section ===== */
  .info-section {
    padding: 60px 0;
    background-size: 100% 100%;
  }
  
  .info-section .container {
    padding: 0 50px;
    flex-direction: column;
  }
  
  .info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 4px solid var(--color-white);
  }
  
  .info-section h3 {
    font-size: 1.75rem;

  }
  
  .info-section p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .info-section ul li {
    font-size: 1rem;
    padding-left: 24px;
    margin-bottom: 0.75rem;
  }
  
  .info-section ul li::before {
    font-size: 0.75rem;
  }
  
  /* ===== FAQ Section ===== */
  .faq {
    padding: 0 0 60px 0;
  }
  
  .faq-main-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    
    padding-bottom: 0.5rem;
    text-align: center;
  }
  
  /* ===== FAQ Item - Large Desktop 1600px ===== */
  /* Только размеры и отступы, цвета наследуются из базовых стилей */
  .faq-item {
    padding: 24px;
    border-radius: 25px;
  }
  
  .faq-item::before {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 22px;
  }
  
  .faq-title {
    margin-bottom: 12px;
  }
  
  .faq-title::after {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
    content: "\f067"; /* FontAwesome plus */
  }
  
  .faq-text {

    line-height: 1.6;
  }
  
  /* ===== Trust Section ===== */
  .trust-section {
    padding: 40px 0;
  }
  
  .trust-title {
    font-size: 1.75rem;
    margin-bottom: 68px;
  }

  
  /* ===== Footer ===== */
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
    margin-bottom: 68px;
    justify-content: space-between;
  }
  
  .footer__col {
    flex: 1 1 200px;
    min-width: 200px;
  }
  
  .footer__logo {
    max-width: 140px;
    margin: 0 0 20px 0;
  }
  
  .footer__heading {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }
  
  .footer__nav {
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer__group {
    align-items: flex-start;
  }
  
  .footer__link {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  
  .footer__copyright {
    font-size: 0.875rem;
  }

  
  .contact-title,
  .about-title,
  .privacy-title,
  .cookie-title,
  .terms-title {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    border-bottom: 5px solid var(--color-white);
    padding-bottom: 0.6rem;
  }
  
  .about-subtitle,
  .privacy-subtitle,
  .cookie-subtitle,
  .terms-subtitle {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .about-subtitle::before {
    width: 4px;
    left: -16px;
  }
  
  .age-gate__dialog {
    padding: 40px 30px;
    max-width: 420px;
    border-radius: 12px;
  }
  
  .age-gate__dialog h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
  
  .cookie-banner__inner {
    padding: 12px 50px;
    flex-direction: row;
    gap: 30px;
    align-items: center;
  }
  
  .cookie-banner__text {
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }
}

/* Full HD and above - 1920px+ */
@media (min-width: 1601px) {
  body {
    font-size: 18px;
  }
  
  .container {
    width: 1200px;
    max-width: 1200px;
    padding: 0 10px;}
  
  /* ===== Header ===== */
  .site-header {
    padding: 25px 0;
  }
  
  .site-header img {
    width: 110px;
    height: auto;
  }
  
  /* ===== Hero Section ===== */
  .hero {
    padding: 100px 0 80px 0;
    background-size: 100% 100%;
  }
  
  .hero-container {
    flex-direction: row;
    gap: 50px;
    align-items: center;
  }
  
  .hero-content {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left;
  }
  
  .update-date {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .hero-title {
    font-size: 4.5rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  
  .hero-features {
    justify-content: flex-start;
    gap: 25px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .hero-features li {
    font-size: 1.1rem;
    padding: 10px 15px;
  }
  
  .hero-features li i {
    font-size: 1.3rem;
    margin-right: 10px;
  }
  
  .hero-image {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: right;
  }
  
  .hero-image img {
    max-width: 100%;
    border-radius: 15px;
  }
  
  /* ===== Casino Card ===== */
  .casino-card {
    padding: 50px;
    gap: 40px;
    flex-direction: row;
    text-align: left;
    margin: 50px 0;
    align-items: center;
  }
  
  .casino-card::before {
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-radius: 18px;
  }
  

  
  .card-tag {
    font-size: 1rem;
    padding: 10px 28px;
    border-radius: 22px;
    margin-bottom: 0;
    align-self: flex-start;
  }
  
  .card-logo {
    width: 520px;
    height: 270px;
    padding: 60px;
    order: 1;
    border-radius: 18px;
    flex-shrink: 0;
  }
  
  .card-logo img {
    width: 360px;
    max-width: 100%;
  }
  
  .card-right {
    order: 2;
    flex: 1;
    height: 270px;
    margin: 0 4rem;
  }
  
  .rating {
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  
  .rating-value {
    font-size: 1.7rem;
  }
  
  .votes {
    font-size: 1.1rem;
  }
  
  .bonus-text {
    font-size: 2rem;
    line-height: 1.4;
    text-align: center;
  }
  
  .card-action {
    text-align: center;
  }
  
  .btn-gradient {
    padding: 14px 10rem;
    font-size: 1.2rem;
    width: auto;
    border-radius: 10px;
  }
  
  .min-deposit {
    margin-top: 12px;
    font-size: 1.3rem;
    text-align: center;
  }
  
  /* ===== Info Section ===== */
  .info-section {
    padding: 80px 0;
    background-size: 100% 100%;
  }
  
  .info-section .container {
    flex-direction: column;
  }
  
  .info-section h2 {
    margin-bottom: 1.2rem;
    border-bottom: 5px solid var(--color-white);
    padding-bottom: 0.6rem;
  }
  
  .info-section h3 {
    font-size: 2rem;

  }
  
  .info-section p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  .info-section ul li {
    font-size: 1.1rem;
    padding-left: 28px;
    margin-bottom: 1rem;
  }
  
  .info-section ul li::before {
    font-size: 0.85rem;
  }
  
  /* ===== FAQ Section ===== */
  .faq {
    padding: 0 0 80px 0;
  }
  
  .faq-main-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 0.6rem;
    text-align: center;
  }
  
  /* ===== FAQ Item - Full HD 1920px ===== */
  /* Только размеры и отступы, цвета наследуются из базовых стилей */
  .faq-item {
    padding: 30px;
    border-radius: 28px;
  }
  
  .faq-item::before {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 25px;
  }
  

  
  .faq-title::after {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 10px;
    content: "\f067"; /* FontAwesome plus */
  }
  
  .faq-text {

    line-height: 1.7;
  }
  
  /* ===== Trust Section ===== */
  .trust-section {
    padding: 50px 0;
  }
  
  .trust-title {
    font-size: 2rem;
    margin-bottom: 80px;
  }
  
  .trust-badges {
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  
  .trust-badge img {
    height: 50px;
  }
  
  /* ===== Footer ===== */
  .footer {
    padding: 50px 0 25px;
  }
  
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    text-align: left;
    margin-bottom: 80px;
    justify-content: space-between;
  }
  
  .footer__col {
    flex: 1 1 250px;
    min-width: 250px;
  }
  
  .footer__logo {
    max-width: 160px;
    margin: 0 0 25px 0;
  }
  
  .footer__heading {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  
  .footer__nav {
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer__group {
    align-items: flex-start;
  }
  
  .footer__link {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .footer__copyright {
    font-size: 1rem;
  }

  
  .contact-title,
  .about-title,
  .privacy-title,
  .cookie-title,
  .terms-title {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    border-bottom: 5px solid var(--color-white);
    padding-bottom: 0.6rem;
  }
  
  .about-subtitle,
  .privacy-subtitle,
  .cookie-subtitle,
  .terms-subtitle {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .about-subtitle::before {
    width: 5px;
    left: -20px;
  }
  
  .age-gate__dialog {
    padding: 50px 40px;
    max-width: 450px;
    border-radius: 15px;
  }
  
  .age-gate__dialog h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .age-gate__dialog p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .btn-age {
    padding: 12px 0;
    font-size: 1rem;
    border-radius: 8px;
  }
  
  .cookie-banner__inner {
    padding: 15px 60px;
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
  
  .cookie-banner__text {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }
  
  .cookie-btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 8px;
  }
}

/* ===== Additional Responsive Features ===== */

/* Landscape orientation adjustments for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: 25px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .casino-card {
    flex-direction: row;
    gap: 15px;
    padding: 20px;
  }
  
  .card-logo {
    width: 180px;
    height: 110px;
    padding: 15px;
  }
  
  .card-logo img {
    width: 120px;
  }
  
  .bonus-text {
    font-size: 1.3rem;
  }
  
  .btn-gradient {
    padding: 8px 2rem;
    font-size: 0.9rem;
  }
}

/* High DPI displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-image img,
  .card-logo img,
  .trust-badge img,
  .footer__logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Ultra-wide screens */
@media (min-width: 2560px) {
  .container {
    width: 1200px;
    max-width: 1200px;
    padding: 0 80px;
  }
  
  .hero-title {
    font-size: 5.5rem;
  }
  
  .casino-card {
    padding: 70px;
    gap: 60px;
  }
  
  .card-logo {
    width: 600px;
    height: 320px;
    padding: 80px;
  }
  
  .card-logo img {
    width: 420px;
  }
  
  .bonus-text {
    font-size: 2rem;
  }
  
  .btn-gradient {
    padding: 18px 12rem;
    font-size: 1.4rem;
  }
}

/* ===== Desktop 1024px+ - Two Column Casino Card ===== */
@media (min-width: 1025px) {
  /* ===== Casino Card ===== */
  .casino-card {
    padding: 40px;
    gap: 40px;
    flex-direction: row;
    text-align: left;
    margin: 40px 0;
    align-items: stretch;
  }
  
  .casino-card::before {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 18px;
  }

  
  .card-tag {
    font-size: 0.875rem;
    padding: 8px 24px;
    border-radius: 20px;
    margin-bottom: 0;
    align-self: center;
  }
  
  .card-logo {
    width: 460px;
    height: 237px;
    padding: 50px;
    border-radius: 16px;
    flex-shrink: 0;
    order: 1;
  }
  
  .card-logo img {
    width: 315px;
    max-width: 100%;
  }
  
  .card-right {
    order: 2;
    flex: 1;
    height: 237px;
    margin: 0 4rem;
  }
  
  
  .card-action {
    text-align: center;
    margin-top: 0;
  }
  
  .btn-gradient {
    padding: 12px 8.4rem;
    font-size: 1.15rem;
    width: auto;
    border-radius: 8px;
  }
  
  .min-deposit {
    margin-top: 12px;
    font-size: 1.2rem;
    text-align: center;
  }
}

/* Extra small mobile devices - 320px and below */
@media (max-width: 320px) {
  .age-restriction-icon {
    width: 45px;
    height: 42px;
    background: linear-gradient(45deg, #6b7280, #9ca3af, #6b7280);
  }
  
  .age-restriction-icon::before {
    background: #374151;
  }
  
  .age-restriction-icon span {
    font-size: 0.9rem;
    color: #d1d5db;
  }
  
  .hero-features {
    gap: 12px;
    align-items: center;
  }
  

  .feature-icon-img {
    width: 24px;
    height: 24px;
  }
  
  .info-section {
    padding: 20px 0;
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
  }
  
  .info-section .container {
    padding: 0 10px;
  }
  
  .info-section h2 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
  
  .info-section h3 {
    font-size: 1.1rem;

  }
  
  .info-section p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
  }
  
  .info-icon {
    width: 45px;
    height: 45px;
  }
  
  .info-item h3 {
    font-size: 1.2rem;
  }
  
  .trust-badge img {
    height: 100px;
    width: auto;
  }
}

/* Print styles */
@media print {
  * {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  
  .hero,
  .info-section {
    background: none !important;
    color: #000 !important;
  }
  
  .casino-card {
    background: none !important;
    border: 2px solid #000 !important;
    break-inside: avoid;
  }
  
  .faq-item {
    break-inside: avoid;
    border: 1px solid #000 !important;
    background: none !important;
  }
  
  .footer {
    background: none !important;
    color: #000 !important;
  }
  
  .btn-gradient {
    background: none !important;
    border: 2px solid #000 !important;
    color: #000 !important;
  }
  
  .trust-badges,
  .age-gate,
  .cookie-banner {
    display: none !important;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Remove bottom margin and reduce bottom padding for all page sections ===== */

