/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: url('assets/Background.png') center center / cover no-repeat fixed;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--neon-gold);
  box-shadow: 0 0 20px var(--neon-gold-glow), 0 4px 15px rgba(0, 0, 0, 0.5);
  position: static;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

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

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px var(--neon-gold-glow);
  filter: drop-shadow(0 0 10px var(--neon-gold-glow));
  letter-spacing: 1px;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: filter 0.3s ease;
  filter: drop-shadow(0 0 10px var(--neon-gold-glow));
}

.logo-img:hover {
  filter: drop-shadow(0 0 15px var(--neon-gold-glow)) brightness(1.1);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #a0aec0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--neon-gold);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-gold);
  box-shadow: 0 0 10px var(--neon-gold-glow);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--neon-gold-glow), 0 0 40px var(--neon-gold-glow);
  filter: drop-shadow(0 0 10px var(--neon-gold-glow));
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #a0aec0;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(147, 192, 178, 0.1);
  border: 1px solid rgba(223, 91, 91, 0.897);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
}

.age-badge {
  background: var(--color-error);
  border-color: var(--color-error);
  color: white;
  font-weight: 700;
}

.age-badge-prominent {
  background: linear-gradient(135deg, var(--color-warning) 0%, var(--color-error) 100%);
  border: 2px solid var(--color-error);
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
  }
  50% {
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.6);
  }
  100% {
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
  }
}

/* Warning Section */
.warning-section {
  padding: 2rem 0;
}

.warning-box {
  background: linear-gradient(135deg, var(--color-warning) 0%, var(--color-error) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(229, 62, 62, 0.3);
}

.warning-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.warning-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.warning-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.warning-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

.warning-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.warning-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Casino Cards Section */
.casinos-section {
  padding: 4rem 0;
  position: relative;
}

.casinos-header {
  position: relative;
  margin-bottom: 2rem;
}

.advertising-disclosure {
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.affiliate-disclosure {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(204, 170, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.disclosure-text {
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.disclosure-text strong {
  color: var(--neon-gold);
  font-weight: 600;
}

.disclosure-link {
  color: var(--neon-gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.disclosure-link:hover {
  color: var(--neon-gold-bright);
  text-shadow: 0 0 10px var(--neon-gold-glow);
  text-decoration: underline;
}

/* Affiliate Section Styles */
.affiliate-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.affiliate-content {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(204, 170, 0, 0.02) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.affiliate-text {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.affiliate-text strong {
  color: var(--neon-gold);
  font-weight: 600;
}

.affiliate-subtitle {
  color: var(--neon-gold);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.affiliate-subtitle:first-of-type {
  margin-top: 0;
}

.affiliate-list {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.8;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.affiliate-list li {
  margin-bottom: 0.75rem;
}

.affiliate-list li strong {
  color: var(--neon-gold);
  font-weight: 600;
}

.casinos-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* New Casino Card Style - Vertical Layout */
.casino-card-new {
  background: linear-gradient(135deg, rgba(219, 174, 88, 0.15) 0%, rgba(204, 170, 0, 0.1) 100%);
  border-radius: 12px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.casino-card-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2), 0 0 20px rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.6);
}

.casino-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--neon-gold-dark) 0%, var(--neon-gold) 100%);
  color: #000;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0 0 6px 0;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px var(--neon-gold-glow);
}

.casino-card-content {
  padding: 1rem 1.25rem;
  padding-top: 2rem;
}

.casino-main-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.casino-name-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.casino-logo-new {
  width: 50px;
  height: 35px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 6px;
  flex-shrink: 0;
}

.casino-name-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
}

.casino-name-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bonus-info-compact {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.bonus-title-compact {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e0;
  line-height: 1.2;
}

.bonus-subtitle-compact {
  font-size: 0.8rem;
  color: #a0aec0;
  font-weight: 500;
  line-height: 1.2;
}

.get-bonus-btn-compact {
  background: linear-gradient(135deg, var(--neon-gold-dark) 0%, var(--neon-gold) 100%);
  border: none;
  color: #000;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 0 15px var(--neon-gold-glow);
}

.get-bonus-btn-compact:hover {
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-bright) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--neon-gold-glow), 0 0 30px var(--neon-gold-glow);
}

.casino-rating-section {
  flex-shrink: 0;
}

.rating-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  min-width: 100px;
}

.rating-score-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 0.2rem;
}

.stars-new {
  color: #4ade80;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
}

.votes-count {
  font-size: 0.7rem;
  color: #a0aec0;
  font-weight: 500;
}


.casino-terms {
  font-size: 0.7rem;
  color: #a0aec0;
  line-height: 1.4;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.discover-more {
  text-align: center;
}

.discover-btn {
  background: rgba(232, 242, 245, 0.1);
  border: 2px solid rgba(240, 149, 149, 0.3);
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.discover-btn:hover {
  background: rgba(186, 208, 214, 0.2);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .nav {
    display: none;
  }

  .casino-main-info {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .casino-name-section {
    flex: 1 1 100%;
    min-width: 0;
  }

  .get-bonus-btn-compact {
    flex: 1 1 auto;
    min-width: 120px;
  }

  .casino-rating-section {
    flex: 1 1 auto;
    min-width: 100px;
  }

  .casino-name-new {
    font-size: 1.25rem;
  }

  .casino-logo-new {
    width: 40px;
    height: 28px;
  }

  .bonus-title-compact {
    font-size: 0.85rem;
  }

  .bonus-subtitle-compact {
    font-size: 0.75rem;
  }

  .rating-box {
    width: 100%;
  }

  .advertising-disclosure {
    position: static;
    text-align: right;
    margin-bottom: 1rem;
  }

  .hero-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

/* How to Use Section */
.how-to-use-section {
  padding: 60px 0;
  background: var(--color-blackish-light);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--color-dark-teal-dark);
  border-radius: 12px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.criteria-item:hover {
  border-color: var(--color-warning);
  transform: translateY(-2px);
}

.criteria-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 5px;
}

.criteria-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Importance Section */
.importance-section {
  padding: 60px 0;
  background: var(--color-blackish);
}

/* UK Regulation Section */
.regulation-section {
  padding: 60px 0;
  background: var(--color-blackish-light);
}

/* Game Types Section */
.game-types-section {
  padding: 60px 0;
  background: var(--color-blackish);
}

.game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.game-type-card {
  background: var(--color-dark-teal-dark);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.game-type-card:hover {
  border-color: var(--color-warning);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.1);
}

.game-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.game-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.game-description {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Best Casino Section */
.best-casino-section {
  padding: 60px 0;
  background: var(--color-blackish-light);
}

.checklist {
  margin: 40px 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px 0;
}

.check-icon {
  color: var(--color-warning);
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-text {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}

.final-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  text-align: center;
  padding: 20px;
  background: var(--color-dark-teal-dark);
  border-radius: 8px;
  border-left: 4px solid var(--color-warning);
}

/* Enhanced Safer Gambling Section */
.safer-gambling-section {
  padding: 80px 0;
  background: var(--color-blackish);
  border-top: 2px solid var(--color-warning);
}

.safer-gambling-title {
  color: var(--color-warning);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.safer-gambling-content {
  margin-bottom: 50px;
}

.safer-gambling-text {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
}

.organizations-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.help-section {
  background: var(--color-blackish-light);
  border-radius: 12px;
  padding: 40px;
  border: 2px solid var(--color-error);
  margin-top: 40px;
}

.help-section-page {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.help-info {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.help-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.help-icon {
  font-size: 32px;
}

.help-title {
  color: var(--color-error);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.help-contacts {
  margin-bottom: 30px;
}

.help-contact {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--color-dark-teal-dark);
  border-radius: 8px;
}

.contact-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}

.contact-info strong {
  color: #fff;
}

.contact-link {
  color: var(--color-warning);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

.learn-more-btn {
  display: inline-block;
  background: var(--color-warning);
  color: #000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: var(--color-error);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section-main {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.faq-section-main .section-title {
  text-align: center;
}

.faq-single-block {
  max-width: 900px;
  margin: 0 auto;
}

.faq-content {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(204, 170, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.faq-question-compact {
  color: var(--neon-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
}

.faq-question-compact:first-child {
  margin-top: 0;
}

.faq-answer-compact {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.faq-answer-compact:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  position: static;
  backdrop-filter: blur(10px);
}

.footer-organizations {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.org-link-footer {
  text-decoration: none;
  color: inherit;
  display: block;
}

.org-logo-card-footer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  min-width: 120px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.org-logo-card-footer:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
}

.org-logo-card-footer.wide {
  min-width: 180px;
}

.org-icon-footer {
  background: var(--neon-gold);
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  margin: 0 auto 8px auto;
}

.org-icon-footer.circle {
  background: none;
  border: 2px solid var(--neon-gold);
  color: var(--neon-gold);
  font-size: 16px;
  font-weight: bold;
}

.org-name-footer {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.2;
}

.org-name-footer.large {
  font-size: 18px;
  margin-bottom: 8px;
}

.org-desc-footer {
  color: #ccc;
  font-size: 11px;
  line-height: 1.3;
  margin: 0;
}

.footer-content {
  margin-bottom: 30px;
}

.copyright {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.footer-text {
  color: #999;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.footer-link {
  color: var(--neon-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: var(--color-blackish-light);
  border-radius: 8px;
  border: 1px solid var(--color-error);
  flex-wrap: wrap;
  text-align: center;
}

.warning-triangle {
  font-size: 20px;
  color: var(--color-error);
}

.footer-warning-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.age-verification-link {
  color: var(--neon-gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.age-verification-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .criteria-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .game-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .organizations-logos {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .org-logo-card {
    min-width: 200px;
    max-width: 280px;
  }

  .help-section {
    padding: 25px;
  }

  .help-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .help-contact {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-warning {
    flex-direction: column;
    gap: 10px;
  }

  .safer-gambling-title {
    font-size: 28px;
  }

  .criteria-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .checklist-item {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* CSS Variables */
:root {
  /* Основные цвета палитры */
  --color-teal: #488a99;
  --color-gray: #b4b4b4;
  --color-dark-teal: #4d585b;
  --color-gold: #dbae58;
  
  /* Темные варианты */
  --color-teal-dark: #3a6f7c;
  --color-dark-teal-dark: #3c4649;
  --color-gold-dark: #c6994a;

  /* Супер темные цвета (почти черные) */
  --color-blackish: #1a1e1f;
  --color-blackish-dark: #121516;
  --color-blackish-light: #232829;
  
  /* Светлые варианты */
  --color-teal-light: #5ca1b3;
  --color-gray-light: #d0d0d0;
  --color-dark-teal-light: #5f6b6e;
  --color-gold-light: #e6c272;
  
  /* Очень светлые для фонов */
  --color-teal-pale: #e8f2f5;
  --color-gray-pale: #f5f5f5;
  --color-gold-pale: #f9f2e3;
  
  /* Акцентные цвета (дополнительные) */
  --color-coral: #e67e7e;
  --color-coral-dark: #d26969;
  --color-coral-light: #f09595;
  --color-coral-pale: #fdf0f0;
  
  --color-sage: #7aa89a;
  --color-sage-dark: #639184;
  --color-sage-light: #93c0b2;
  --color-sage-pale: #f0f7f5;
  
  --color-slate: #6b7c8c;
  --color-slate-dark: #556472;
  --color-slate-light: #8496a6;
  --color-slate-pale: #f0f3f6;
  
  /* Functional colors - Gold Neon Theme */
  --color-success: #5d9c7a;
  --color-warning: #ffd700;
  --color-error: #ff6b6b;
  --color-info: #5d8aa8;
  
  /* Neon Gold Colors */
  --neon-gold: #ffd700;
  --neon-gold-bright: #ffed4e;
  --neon-gold-dark: #ccaa00;
  --neon-gold-glow: rgba(255, 215, 0, 0.5);
  
  /* Text colors */
  --text-primary: #2c3e50;
  --text-secondary: #4d585b;
  --text-tertiary: #7e8a8d;
  --text-inverse: #ffffff;
  --text-disabled: #b4b4b4;
  
  /* Background colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f9f9f9;
  --bg-tertiary: #f5f5f5;
  --bg-inverse: #4d585b;
  --bg-overlay: rgba(45, 56, 58, 0.7);
  
  /* Border colors */
  --border-primary: #e0e0e0;
  --border-secondary: #b4b4b4;
  --border-accent: #dbae58;
  --border-teal: #488a99;
  
  /* Shadow colors */
  --shadow-light: rgba(77, 88, 91, 0.08);
  --shadow-medium: rgba(77, 88, 91, 0.15);
  --shadow-heavy: rgba(77, 88, 91, 0.25);
  
  /* State colors */
  --hover-teal: rgba(72, 138, 153, 0.08);
  --active-teal: rgba(72, 138, 153, 0.12);
  --focus-teal: rgba(72, 138, 153, 0.2);
  
  --hover-gold: rgba(219, 174, 88, 0.08);
  --active-gold: rgba(219, 174, 88, 0.12);
  --focus-gold: rgba(219, 174, 88, 0.2);
  
  /* Gradient definitions */
  --gradient-teal: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
  --gradient-gold: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  --gradient-teal-gold: linear-gradient(135deg, var(--color-teal), var(--color-gold));
  --gradient-dark: linear-gradient(135deg, var(--color-dark-teal), var(--color-teal-dark));
  
  /* Opacity helpers */
  --opacity-disabled: 0.5;
  --opacity-hover: 0.8;
  --opacity-active: 0.9;
}

/* Organization Logo Cards */
.org-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.org-link:hover {
  text-decoration: none;
}

.org-logo-card {
  background: #4a4a4a;
  border: 2px solid var(--color-coral-dark);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  min-width: 120px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.org-logo-card.wide {
  min-width: 180px;
}

.org-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 168, 76, 0.2);
  border-color: var(--color-coral);
}

.org-icon {
  background: var(--color-coral-dark);
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  margin: 0 auto 8px auto;
}

.org-icon.circle {
  background: none;
  border: 2px solid var(--color-coral-dark);
  color: var(--color-coral-dark);
  font-size: 16px;
  font-weight: bold;
}

.org-name {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.2;
}

.org-name.large {
  font-size: 18px;
  margin-bottom: 8px;
}

.org-name.accent {
  color: var(--color-coral-dark);
  margin-bottom: 8px;
}

.org-desc {
  color: #ccc;
  font-size: 11px;
  line-height: 1.3;
  margin: 0;
}

/* Page-specific styles for About, Contact, Privacy, Terms, Cookies pages */

/* Last Updated Date */
.last-updated {
  color: #a0aec0;
  font-size: 14px;
  margin-top: 10px;
  font-style: italic;
}

/* Content Section Styles */
.content-section {
  padding: 60px 0;
  background: var(--color-blackish-light);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.content-card {
  background: var(--color-dark-teal-dark);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #333;
  transition: all 0.3s ease;
  text-align: center;
}

.content-card:hover {
  border-color: var(--color-warning);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 7, 0, 0.1);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.card-title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.card-text {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Values Section */
.values-section {
  padding: 60px 0;
  background: var(--color-blackish);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  background: var(--color-dark-teal-dark);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: var(--color-warning);
  transform: translateY(-2px);
}

.value-title {
  color: var(--color-warning);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.value-text {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Contact Page Styles */
.contact-section {
  padding: 60px 0;
  background: var(--color-blackish-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-form-container,
.contact-info-container {
  background: var(--color-dark-teal-dark);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #333;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--color-blackish-light);
  border: 1px solid #444;
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-warning);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  accent-color: var(--color-warning);
}

.form-link {
  color: var(--color-warning);
  text-decoration: none;
}

.form-link:hover {
  text-decoration: underline;
}

.submit-btn {
  background: linear-gradient(135deg, var(--color-warning) 0%, #d1694f 100%);
  border: none;
  color: #000;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #b98434 0%, #d86042 100%);
  transform: translateY(-2px);
}

/* Contact Info Cards */
.contact-info-card {
  background: var(--color-blackish-light);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--color-warning);
}

.info-icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: block;
}

.info-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.info-text {
  color: var(--color-warning);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px 0;
}

.info-description {
  color: #ccc;
  font-size: 14px;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: var(--color-blackish);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  background: var(--color-dark-teal-dark);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #333;
}

.faq-question {
  color: var(--color-warning);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.faq-answer {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Legal Document Styles */
.legal-content {
  padding: 60px 0;
  background: var(--color-blackish-light);
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-title {
  color: var(--color-warning);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.legal-subtitle {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 20px 0 15px 0;
}

.legal-text {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.legal-list {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin: 15px 0;
  padding-left: 20px;
}

.legal-list li {
  margin-bottom: 8px;
}

.legal-link {
  color: var(--color-warning);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Cookie Types */
.cookie-type {
  background: var(--color-dark-teal-dark);
  border-radius: 12px;
  padding: 25px;
  margin: 20px 0;
  border: 1px solid #333;
}

/* Cookie Settings Section */
.cookie-settings-section {
  padding: 60px 0;
  background: var(--color-blackish);
}

.cookie-controls {
  margin: 40px 0;
}

.cookie-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-dark-teal-dark);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #333;
}

.control-info {
  flex: 1;
}

.control-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.control-description {
  color: #ccc;
  font-size: 14px;
  margin: 0;
}

.control-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle-label {
  color: #ccc;
  font-size: 14px;
  cursor: pointer;
}

.cookie-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cookie-btn {
  background: var(--color-dark-teal-dark);
  border: 2px solid var(--color-warning);
  color: var(--color-warning);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: var(--color-warning);
  color: #000;
}

.cookie-btn.accept-all {
  background: var(--color-warning);
  color: #000;
}

.cookie-btn.accept-all:hover {
  background: #b86200;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 25px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legal-document {
    padding: 0 10px;
  }

  .cookie-control {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: center;
  }

  .cookie-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.age-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
  #000000 0%, 
  #1a1a1a 30%, 
  #2d2d2d 70%, 
  #000000 100%
);
  backdrop-filter: blur(10px);
}

.age-modal-content {
  position: relative;
  background: linear-gradient(
  135deg,
  rgba(0, 0, 0, 0.95) 0%,
  rgba(20, 20, 20, 0.98) 100%
);
  border: 2px solid var(--neon-gold);
  border-radius: 24px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 50px var(--neon-gold-glow), 0 0 100px rgba(255, 215, 0, 0.3);
  animation: modalSlideIn 0.5s ease;
  text-align: center;
}

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

.age-modal-header {
  margin-bottom: 2rem;
}

.age-modal-logo {
  margin-bottom: 1rem;
}

.age-logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 15px var(--neon-gold-glow));
}

.age-modal-brand {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 0 20px var(--neon-gold-glow);
  filter: drop-shadow(0 0 10px var(--neon-gold-glow));
}

.brand-accent {
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-highlight {
  background: linear-gradient(135deg, var(--neon-gold-bright) 0%, var(--neon-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-modal-title {
  font-size: 1.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  line-height: 1.3;
  text-shadow: 0 0 15px var(--neon-gold-glow);
}

.age-modal-body {
  color: #e2e8f0;
}

.age-modal-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #cbd5e0;
}

.age-modal-consent {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #a0aec0;
}

.age-modal-link {
  color: var(--neon-gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.age-modal-link:hover {
  color: var(--neon-gold-bright);
  text-decoration: underline;
  text-shadow: 0 0 10px var(--neon-gold-glow);
}

.age-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-direction: column;
}

.age-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
  position: relative;
  overflow: hidden;
}

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

.age-btn:hover::before {
  left: 100%;
}

.age-btn-confirm {
  background: linear-gradient(135deg, var(--neon-gold-dark) 0%, var(--neon-gold) 100%);
  color: #000;
  box-shadow: 0 4px 15px var(--neon-gold-glow), 0 0 20px rgba(255, 215, 0, 0.3);
  font-weight: 700;
}

.age-btn-confirm:hover {
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-bright) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--neon-gold-glow), 0 0 30px rgba(255, 215, 0, 0.5);
}

.age-btn-reject {
  background: linear-gradient(135deg, rgba(100, 100, 100, 0.8) 0%, rgba(60, 60, 60, 0.9) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-btn-reject:hover {
  background: linear-gradient(135deg, rgba(80, 80, 80, 0.9) 0%, rgba(50, 50, 50, 1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.age-modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.age-modal-warning {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #718096;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .age-modal-content {
    padding: 2rem;
    margin: 1rem;
    width: calc(100% - 2rem);
  }

  .age-modal-brand {
    font-size: 1.8rem;
  }

  .age-modal-title {
    font-size: 1.5rem;
  }

  .age-modal-buttons {
    gap: 0.75rem;
  }

  .age-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .age-modal-content {
    padding: 1.5rem;
  }

  .age-modal-brand {
    font-size: 1.6rem;
  }

  .age-modal-title {
    font-size: 1.3rem;
  }
}

/* Body scroll lock when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
  border-top: 2px solid var(--neon-gold);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5), 0 0 30px var(--neon-gold-glow);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

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

.cookie-banner-text {
  flex: 1;
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner-text strong {
  color: var(--neon-gold);
  font-weight: 600;
}

.cookie-banner-link {
  color: var(--neon-gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-banner-link:hover {
  color: var(--neon-gold-bright);
  text-shadow: 0 0 10px var(--neon-gold-glow);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--neon-gold-dark) 0%, var(--neon-gold) 100%);
  color: #000;
  box-shadow: 0 4px 15px var(--neon-gold-glow);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-bright) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--neon-gold-glow), 0 0 25px rgba(255, 215, 0, 0.4);
}

.cookie-btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    width: 100%;
  }
}
