/*STEP 1 START*/

/* 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-image: url('assets/background-dark-premium.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #1a0f2e; /* Fallback color */
  color: #E0E0E0;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

/* Overlay for better text readability */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 15, 46, 0.3);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

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

/* Header */
.header {
  background: rgba(26, 15, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: headerSlideDown 0.5s ease-out;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.logo-img {
  height: 40px;
  width: auto;
  filter: none;
  transition: all 0.3s ease;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.5));
  }
  50% {
    transform: translateY(-3px) scale(1.02);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.8));
  }
}

.logo-img:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 0 15px rgba(139, 92, 246, 1));
}

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

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

.nav-link:hover,
.nav-link.active {
  color: #8B5CF6;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #8B5CF6;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.hero-features {
  margin: 2rem 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #E0E0E0;
  font-size: 1.1rem;
}

.feature-check {
  color: #10B981;
  font-weight: bold;
  font-size: 1.2rem;
}

.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.advertising-disclosure {
  color: #E0E0E0;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

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

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  color: #E0E0E0;
}

.age-badge {
  background: #8B5CF6;
  border-color: #7C3AED;
  color: #FFFFFF;
  font-weight: 700;
}

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

.warning-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  filter: none;
  border: 1px solid rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(10px);
}

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

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

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

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

.warning-btn {
  background: rgba(139, 92, 246, 0.2);
  border: 2px solid rgba(139, 92, 246, 0.4);
  color: #FFFFFF;
  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(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

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

.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.casino-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(10px);
  animation: cardFadeIn 0.6s ease-out backwards;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.casino-card:nth-child(1) { animation-delay: 0.1s; }
.casino-card:nth-child(2) { animation-delay: 0.2s; }
.casino-card:nth-child(3) { animation-delay: 0.3s; }
.casino-card:nth-child(4) { animation-delay: 0.4s; }
.casino-card:nth-child(5) { animation-delay: 0.5s; }
.casino-card:nth-child(6) { animation-delay: 0.6s; }

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

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B5CF6 0%, #6366F1 100%);
  transition: height 0.3s ease;
}

.casino-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.casino-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4), 0 0 30px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.6);
}

.casino-card:hover::before {
  height: 6px;
  background: linear-gradient(90deg, #8B5CF6 0%, #6366F1 50%, #EC4899 100%);
}

.casino-card:hover::after {
  width: 300px;
  height: 300px;
}

.casino-card:active {
  transform: translateY(-8px) scale(1.01);
}

.premium-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: 2px solid rgba(139, 92, 246, 0.3);
}

.casino-category {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  display: inline-block;
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
  animation: categoryPulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.casino-category::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: categoryShine 3s infinite;
}

@keyframes categoryPulse {
  0%, 100% {
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.6);
  }
}

@keyframes categoryShine {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(45, 55, 72, 0.15);
  border-color: rgba(66, 153, 225, 0.4);
}

/* Prevent text selection on clickable cards */
.casino-card * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

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

/* Logo should not be clickable separately */
.casino-logo {
  width: 120px;
  height: 60px;
  border-radius: 8px;
  object-fit: contain;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.casino-card:hover .casino-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.5));
  border-color: rgba(139, 92, 246, 0.5);
}

.casino-rating {
  text-align: right;
}

.stars {
  color: #10B981;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  animation: starsTwinkle 2s ease-in-out infinite;
}

@keyframes starsTwinkle {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.8;
    filter: brightness(1.2);
  }
}

.rating-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}

.rating-votes {
  font-size: 0.9rem;
  color: #E0E0E0;
  margin-top: 0.25rem;
}

.casino-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.casino-card:hover .casino-name {
  color: #FBBF24;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.bonus-info {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.bonus-label {
  font-size: 0.9rem;
  color: #E0E0E0;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bonus-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
}

.bonus-highlight {
  margin-bottom: 1.5rem;
}

.bonus-amount-large {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
  animation: bonusGlow 2s ease-in-out infinite;
}

@keyframes bonusGlow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.bonus-type {
  font-size: 1rem;
  color: #E0E0E0;
  font-weight: 500;
}

.age-warning {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #E0E0E0;
  text-align: center;
  font-weight: 500;
}

.casino-terms {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: #E0E0E0;
  line-height: 1.5;
}

.casino-terms p {
  margin: 0;
}

.casino-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.casino-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #E0E0E0;
}

.casino-features li::before {
  content: "✓";
  color: #10B981;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.min-deposit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #718096;
  font-size: 0.9rem;
}

.min-deposit::before {
  content: "💳";
}

.license-info {
  font-size: 0.8rem;
  color: #E0E0E0;
  margin-bottom: 1rem;
}

.license-link {
  color: #8B5CF6;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.license-link:hover {
  color: #A78BFA;
  text-decoration: underline;
}

.payment-methods {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.payment-icon {
  width: 40px;
  height: 25px;
  background: #F0F7FF;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  color: #2D3748;
  border: 1px solid #718096;
}

.visit-btn,
.get-bonus-btn {
  width: 100%;
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  border: none;
  color: #FFFFFF;
  padding: 1.2rem 2rem;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.get-bonus-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.visit-btn:hover,
.get-bonus-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
}

.get-bonus-btn:hover::before {
  width: 300px;
  height: 300px;
}

.visit-btn:active,
.get-bonus-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* Active state for card clicks */
.casino-card:active {
  transform: translateY(-2px);
}

.terms-text {
  font-size: 0.75rem;
  color: #A0AEC0;
  text-align: center;
  margin-top: 1rem;
}

.casinos-section__main-title {
  color: #2D3748;
}

/*STEP 1 END*/

/*STEP 2 START*/

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

.discover-btn {
  background: rgba(66, 153, 225, 0.1);
  border: 2px solid rgba(66, 153, 225, 0.3);
  color: #2D3748;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.discover-btn:hover {
  background: rgba(66, 153, 225, 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;
  }

  .casinos-grid {
    grid-template-columns: 1fr;
  }

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

/* How to Use Section */
.how-to-use-section {
  padding: 60px 0;
  background: #FFFFFF;
}

.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: #F0F7FF;
  border-radius: 12px;
  border: 1px solid rgba(66, 153, 225, 0.2);
  transition: all 0.3s ease;
}

.criteria-item:hover {
  border-color: #4299E1;
  transform: translateY(-2px);
}

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

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

/* Importance Section */
.importance-section {
  padding: 60px 0;
  background: #F0F7FF;
}

/* UK Regulation Section */
.regulation-section {
  padding: 60px 0;
  background: #FFFFFF;
}

/* Game Types Section */
.game-types-section {
  padding: 60px 0;
  background: #F0F7FF;
}

.game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  filter: drop-shadow(2px 4px 6px rgba(45, 55, 72, 0.1));
}

.game-type-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(66, 153, 225, 0.15);
  transition: all 0.3s ease;
}

.game-type-card:hover {
  border-color: #4299E1;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(66, 153, 225, 0.15);
}

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

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

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

/* Best Casino Section */
.best-casino-section {
  padding: 60px 0;
  background: #FFFFFF;
}

.checklist {
  margin: 40px 0;
}

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

.check-icon {
  color: #4299E1;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.final-text {
  color: #2D3748;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  text-align: center;
  padding: 20px;
  background: #F0F7FF;
  border-radius: 8px;
  border-left: 4px solid #4299E1;
}

/* Enhanced Safer Gambling Section */
.safer-gambling-section {
  padding: 80px 0;
  background: #E6F0FF;
  border-top: 2px solid rgba(66, 153, 225, 0.3);
}

.safer-gambling-title {
  color: #2D3748;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

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

.safer-gambling-text {
  color: #718096;
  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: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  border: 2px solid rgba(66, 153, 225, 0.35);
  margin-top: 40px;
}

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

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

.help-title {
  color: #3182CE;
  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: #F0F7FF;
  border-radius: 8px;
}

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

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

.contact-info strong {
  color: #2D3748;
}

.contact-link {
  color: #2D3748;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.learn-more-btn {
  display: inline-block;
  background: #4299E1;
  color: #FFFFFF;
  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: #3182CE;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #FFFFFF;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(66, 153, 225, 0.2);
}

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

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

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

.footer-link {
  color: #2D3748;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: #F0F7FF;
  border-radius: 8px;
  border: 1px solid rgba(66, 153, 225, 0.3);
  flex-wrap: wrap;
  text-align: center;
}

.warning-triangle {
  font-size: 20px;
  color: #3182CE;
}

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

.age-verification-link {
  color: #2D3748;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.age-verification-link:hover {
  color: #1A202C;
  text-decoration: underline;
}
/*STEP 2 END*/

/* 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 {
  --accent-color: #8fd0c4;
  --accent-secondary: #f3c892;
  --warning-color: #f2a7a0;
  --background-dark: #0f1723;
  --background-light: #111f31;
  --card-background: #162335;
  --text-primary: #e8eff7;
  --text-secondary: #c7d3e0;
  --text-muted: #9cb1c5;
  --gold-gradient: linear-gradient(135deg, #8fd0c4 0%, #f3c892 100%);
}

/*STEP 3 START*/

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

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

.org-logo-card {
  background: #FFFFFF;
  border: 2px solid rgba(66, 153, 225, 0.6);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  min-width: 120px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(45, 55, 72, 0.1);
}

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

.org-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 153, 225, 0.15);
  border-color: #4299E1;
}

.org-icon {
  background: #4299E1;
  color: #FFFFFF;
  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 #4299E1;
  color: #4299E1;
  font-size: 16px;
  font-weight: bold;
}

.org-name {
  color: #2D3748;
  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: #4299E1;
  margin-bottom: 8px;
}

.org-desc {
  color: #718096;
  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: #F0F7FF;
}

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

.content-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(66, 153, 225, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.content-card:hover {
  border-color: #4299E1;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(66, 153, 225, 0.15);
}

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

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

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

/* Values Section */
.values-section {
  padding: 60px 0;
  background: #E6F0FF;
}

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

.value-item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(66, 153, 225, 0.2);
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: #4299E1;
  transform: translateY(-2px);
}

.value-title {
  color: #2D3748;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

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

/* Contact Page Styles */
.contact-section {
  padding: 60px 0;
  background: #F0F7FF;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-card {
  background: #FFFFFF;
  border: 1px solid rgba(66, 153, 225, 0.25);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(66, 153, 225, 0.5);
  box-shadow: 0 15px 30px rgba(45, 55, 72, 0.1);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-title {
  color: #2D3748;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-text {
  color: #718096;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-link {
  color: #2D3748;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #1A202C;
}

.response-info,
.office-info {
  background: #FFFFFF;
  border: 1px solid rgba(66, 153, 225, 0.25);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

.info-title {
  color: #2D3748;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  color: #718096;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(66, 153, 225, 0.15);
}

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

.office-text {
  color: #718096;
  line-height: 1.6;
}

/* FAQ Styles */
.faq-section {
  background: #E6F0FF;
  padding: 4rem 0;
}

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

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(66, 153, 225, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(66, 153, 225, 0.4);
  transform: translateY(-2px);
}

.faq-question {
  color: #2D3748;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: #718096;
  line-height: 1.6;
}

/* Legal Document Styles */
.legal-content {
  padding: 60px 0;
  background: #F0F7FF;
}

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

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(66, 153, 225, 0.15);
}

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

.legal-title {
  color: #2D3748;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

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

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

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

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

.legal-link {
  color: #2D3748;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Cookie Types */
.cookie-type {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  margin: 20px 0;
  border: 1px solid rgba(66, 153, 225, 0.2);
}

/* Cookie Settings Section */
.cookie-settings-section {
  padding: 60px 0;
  background: #E6F0FF;
}

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

.cookie-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(66, 153, 225, 0.2);
}

/*STEP 3 END*/

/*STEP 4 START*/

.control-info {
  flex: 1;
}

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

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

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

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

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

.cookie-btn {
  background: #FFFFFF;
  border: 2px solid rgba(66, 153, 225, 0.35);
  color: #2D3748;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #4299E1;
  color: #FFFFFF;
}

.cookie-btn.accept-all {
  background: #4299E1;
  color: #FFFFFF;
}

.cookie-btn.accept-all:hover {
  background: #3182CE;
}
/*STEP 4 END*/

/* 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;
  }
}

/* Section Titles and Descriptions */
.section-title {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-description {
  color: #E0E0E0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
}

/* Info Sections */
.info-section {
  padding: 60px 0;
  background: transparent;
}

.info-section.alt-bg {
  background: rgba(255, 255, 255, 0.02);
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.02);
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.faq-question {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: #E0E0E0;
  line-height: 1.6;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-title {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.modal-text {
  color: #E0E0E0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.modal-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-btn-primary {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  color: #FFFFFF;
}

.modal-btn-primary:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
  transform: translateY(-2px);
}

.modal-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #E0E0E0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-warning {
  color: #E0E0E0;
  font-size: 0.85rem;
  margin-top: 1rem;
  opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 15, 46, 0.95);
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  padding: 1.5rem;
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-banner-text p {
  color: #E0E0E0;
  margin: 0;
  line-height: 1.6;
}

.cookie-link {
  color: #8B5CF6;
  text-decoration: underline;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
}

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

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-btn-customize {
  background: transparent;
  color: #8B5CF6;
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.cookie-btn-customize:hover {
  background: rgba(139, 92, 246, 0.1);
}

/* Footer Organizations */
.footer-organizations {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.footer-org-item {
  text-align: center;
  padding: 1rem;
}

.footer-org-icon {
  background: #8B5CF6;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 0.5rem;
}

.footer-org-name {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-org-desc {
  color: #E0E0E0;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.footer-org-helpline {
  color: #E0E0E0;
  font-size: 0.75rem;
}

.footer-org-link {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-org-link:hover {
  transform: translateY(-2px);
}

/* Update existing section styles */
.regulation-section,
.best-casino-section,
.game-types-section,
.importance-section,
.how-to-use-section {
  background: transparent;
  padding: 60px 0;
}

.regulation-section.alt-bg,
.best-casino-section.alt-bg,
.game-types-section.alt-bg {
  background: rgba(255, 255, 255, 0.02);
}

.checklist-item {
  color: #E0E0E0;
}

.check-text {
  color: #E0E0E0;
}

.check-icon {
  color: #10B981;
}

.final-text {
  color: #E0E0E0;
  background: rgba(139, 92, 246, 0.1);
  border-left: 4px solid #8B5CF6;
}

.game-type-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-title {
  color: #FFFFFF;
}

.game-description {
  color: #E0E0E0;
}

.criteria-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.criteria-title {
  color: #E0E0E0;
}

/* Footer updates */
.footer {
  background: rgba(26, 15, 46, 0.95);
  border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.copyright {
  color: #FFFFFF;
}

.footer-text {
  color: #E0E0E0;
}

.footer-link {
  color: #8B5CF6;
}

.footer-link:hover {
  color: #A78BFA;
}

.footer-warning {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.footer-warning-text {
  color: #E0E0E0;
}

.age-verification-link {
  color: #8B5CF6;
}

.age-verification-link:hover {
  color: #A78BFA;
}

/* Safer Gambling Section updates */
.safer-gambling-section {
  background: rgba(255, 255, 255, 0.02);
}

.safer-gambling-title {
  color: #FFFFFF;
}

.safer-gambling-text {
  color: #E0E0E0;
}

.help-section {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(139, 92, 246, 0.3);
}

.help-title {
  color: #8B5CF6;
}

.contact-info {
  color: #E0E0E0;
}

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

.contact-link {
  color: #8B5CF6;
}

.learn-more-btn {
  background: #8B5CF6;
  color: #FFFFFF;
}

.learn-more-btn:hover {
  background: #7C3AED;
}

/* Responsive updates */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

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

  .modal-buttons {
    flex-direction: column;
  }

  .footer-organizations {
    flex-direction: column;
    gap: 1rem;
  }
}