/* CSS Variables */
:root {
  /* Header Colors */
  --header-bg: #1a1a2e;
  --logo-gradient-start: #ff6b9d;
  --logo-gradient-end: #4ecdc4;
  --nav-text: #ffffff;
  --nav-hover-line: linear-gradient(90deg, var(--logo-gradient-start), var(--logo-gradient-end));

  /* Footer Colors */
  --footer-bg: #3f2e60;
  --footer-bg-dark: #332a50;
  --footer-text: #c0c0c0;
  --footer-heading: #ffffff;
  --footer-bullet-orange: #ff8c00;
  --footer-bullet-green: #40c040;
  --support-icon-blue: #40a0ff;
  --support-icon-green: #40c040;
  --support-icon-purple: #e060e0;
  --problem-gambling-btn: #8b2c4a;

  /* General Colors */
  --gradient-line: linear-gradient(90deg, #4ecdc4, #9b59b6);
  --main-gradient: linear-gradient(135deg, #1a1a2e, #9b59b6);

  /* Enhanced Gradients */
  --hero-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --hero-gradient-2: linear-gradient(45deg, #ff6b9d, #4ecdc4, #45b7d1, #96c93d);
  --card-gradient-1: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
  --card-gradient-2: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(46, 204, 113, 0.1));
  --card-gradient-3: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(231, 76, 60, 0.1));

  /* Typography */
  --font-primary: 'Arial', sans-serif;
  --font-weight-bold: 700;
  --font-weight-normal: 400;

  /* Shadows */
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 20px rgba(0, 0, 0, 0.2);
  --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(255, 107, 157, 0.3);
  --shadow-glow-strong: 0 0 50px rgba(78, 205, 196, 0.4);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--footer-text);
  background: var(--main-gradient);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: var(--header-bg);
  padding: 20px 0;
  position: relative;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--nav-text);
  transition: transform 0.3s ease;
}

.header__logo a:hover {
  transform: scale(1.05);
}

.header__logo img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--nav-text);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.logo-subtitle {
  font-size: 12px;
  color: var(--logo-gradient-end);
  font-weight: var(--font-weight-normal);
  text-shadow: 0 0 8px rgba(78, 205, 196, 0.5);
}

/* Navigation Styles */
.header__nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--nav-text);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
}

.nav-link:hover {
  color: var(--logo-gradient-end);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--nav-hover-line);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 80%;
}

/* Mobile Toggle */
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  transition: all 0.3s ease;
}

.header__mobile-toggle:hover {
  transform: scale(1.1);
}

.burger-line {
  width: 25px;
  height: 3px;
  background: var(--nav-text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
}

/* Home Page Styles */
.home-page {
  padding: 0;
}

/* Block 1: Hero Section - Enhanced */
.hero-section {
  padding: 120px 0 80px;
  text-align: center;
  background: var(--hero-gradient-1);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--hero-gradient-2);
  opacity: 0.1;
  z-index: 1;
  animation: gradientShift 8s ease-in-out infinite alternate;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    transform: scale(1) rotate(0deg);
  }

  100% {
    transform: scale(1.1) rotate(1deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 12px 24px;
  margin-bottom: 30px;
  backdrop-filter: blur(15px);
  color: white;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  animation: badgeFloat 3s ease-in-out infinite;
}

.hero-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-medium);
  background: rgba(255, 255, 255, 0.2);
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-badge i {
  color: var(--logo-gradient-end);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.hero-section h1 {
  font-size: 5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, var(--logo-gradient-start), var(--logo-gradient-end), #ffffff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: textShine 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.5));
  letter-spacing: 2px;
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-section h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-normal);
  margin-bottom: 30px;
  color: var(--footer-heading);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-section p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--footer-heading);
  line-height: 1.8;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out 0.8s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.1s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--footer-heading);
  font-weight: var(--font-weight-bold);
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.feature-item:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-medium);
}

.feature-item i {
  color: var(--logo-gradient-end);
  font-size: 1.3rem;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Block 2: Statistics Section - Enhanced */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card-gradient-1);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  background: rgba(255, 255, 255, 0.12);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card>* {
  position: relative;
  z-index: 2;
}

.stat-icon {
  width: 90px;
  height: 90px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-heavy);
}

.stat-icon.blue {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.stat-icon.purple {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.stat-icon.orange {
  background: linear-gradient(135deg, #e67e22, #d35400);
}

.stat-icon.green {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.5));
}

.stat-label {
  font-size: 1.2rem;
  color: var(--footer-text);
  font-weight: var(--font-weight-normal);
  transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
  color: var(--footer-heading);
}

/* Block 3: Game Universe Section - Enhanced */
.game-universe-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  position: relative;
  overflow: hidden;
}

.game-universe-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(78, 205, 196, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(255, 107, 157, 0.4));
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 25px rgba(255, 107, 157, 0.4));
  }

  100% {
    filter: drop-shadow(0 0 35px rgba(78, 205, 196, 0.6));
  }
}

.section-header p {
  font-size: 1.4rem;
  color: var(--footer-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.game-categories {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.category-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card-gradient-2);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.category-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card>* {
  position: relative;
  z-index: 2;
}

.category-icon {
  width: 110px;
  height: 110px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.8rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-heavy);
}

.category-icon.pink-blue {
  background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
}

.category-icon.blue-purple {
  background: linear-gradient(135deg, #4ecdc4, #9b59b6);
}

.category-icon.green {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.category-icon.orange-gold {
  background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.category-icon.pink-red {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

.category-icon.light-blue {
  background: linear-gradient(135deg, #81c784, #4fc3f7);
}

.category-card h3 {
  font-size: 1.9rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.category-card:hover h3 {
  color: var(--logo-gradient-end);
  transform: scale(1.05);
}

.category-card p {
  font-size: 1.1rem;
  color: var(--footer-text);
  margin-bottom: 20px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.category-card:hover p {
  color: var(--footer-heading);
}

.game-count {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--logo-gradient-end);
  background: rgba(78, 205, 196, 0.15);
  padding: 10px 25px;
  border-radius: 25px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid rgba(78, 205, 196, 0.3);
}

.category-card:hover .game-count {
  background: rgba(78, 205, 196, 0.25);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(78, 205, 196, 0.4);
}

/* Block 4: Featured Games Section - Enhanced */
.featured-games-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  position: relative;
  overflow: hidden;
}

.featured-games-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.featured-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, #f39c12, #f1c40f, #e67e22);
  background-size: 200% 200%;
  color: #2c3e50;
  padding: 18px 45px;
  border-radius: 35px;
  font-weight: var(--font-weight-bold);
  font-size: 1.3rem;
  margin-bottom: 60px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  animation: bannerGlow 3s ease-in-out infinite alternate;
}

@keyframes bannerGlow {
  0% {
    box-shadow: var(--shadow-medium);
  }

  100% {
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.4);
  }
}

.featured-banner:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(243, 156, 18, 0.6);
}

.featured-banner i {
  font-size: 1.6rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.2) rotate(180deg);
  }
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.game-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card-gradient-3);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.game-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(255, 255, 255, 0.3);
}

.game-card:hover::before {
  opacity: 1;
}

.game-image {
  position: relative;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.15);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-now-btn {
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  color: white;
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 30px;
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
  font-size: 1.1rem;
}

.play-now-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-heavy);
}

.favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.favorite-btn:hover {
  background: rgba(231, 76, 60, 0.9);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
}

.hot-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: var(--font-weight-bold);
  box-shadow: var(--shadow-light);
  animation: hotPulse 2s ease-in-out infinite;
}

@keyframes hotPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.game-info {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.game-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.game-title h3 {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  transition: color 0.3s ease;
}

.game-card:hover .game-title h3 {
  color: var(--logo-gradient-end);
}

.game-title i {
  color: #f39c12;
  font-size: 1.3rem;
  animation: starRotate 3s linear infinite;
}

@keyframes starRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.game-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.game-rating i {
  color: #f1c40f;
  animation: ratingGlow 2s ease-in-out infinite alternate;
}

@keyframes ratingGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(241, 196, 15, 0.5));
  }

  100% {
    filter: drop-shadow(0 0 15px rgba(241, 196, 15, 0.8));
  }
}

.game-rating span {
  color: var(--footer-heading);
  font-weight: var(--font-weight-bold);
}

.game-category {
  background: rgba(78, 205, 196, 0.15);
  color: var(--logo-gradient-end);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: var(--font-weight-bold);
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(78, 205, 196, 0.3);
  transition: all 0.3s ease;
}

.game-card:hover .game-category {
  background: rgba(78, 205, 196, 0.25);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.4);
}

.game-actions {
  display: flex;
  gap: 15px;
}

.btn {
  flex: 1;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-demo {
  background: transparent;
  color: var(--footer-heading);
  border: 2px solid var(--footer-heading);
  position: relative;
  overflow: hidden;
}

.btn-demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--footer-heading);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-demo:hover {
  color: #2c3e50;
}

.btn-demo:hover::before {
  left: 0;
}

.btn-play {
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-light);
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* Block 5: Premium Challenges Section - Enhanced */
.premium-challenges-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  position: relative;
  overflow: hidden;
}

.premium-challenges-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 75%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(78, 205, 196, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.challenge-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.challenge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card-gradient-1);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.challenge-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.challenge-card:hover::before {
  opacity: 1;
}

.challenge-card>* {
  position: relative;
  z-index: 2;
}

.challenge-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: badgeFloat 3s ease-in-out infinite;
}

.challenge-card:hover .challenge-badge {
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.challenge-badge.daily {
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.9), rgba(231, 76, 60, 0.9));
}

.challenge-badge.vip {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.9), rgba(39, 174, 96, 0.9));
}

.challenge-badge.weekend {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.9), rgba(142, 68, 173, 0.9));
}

.challenge-badge.elite {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(192, 57, 43, 0.9));
}

.challenge-icon {
  width: 110px;
  height: 110px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.8rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.challenge-card:hover .challenge-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-heavy);
}

.challenge-icon.orange-yellow {
  background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.challenge-icon.green {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.challenge-icon.pink-purple {
  background: linear-gradient(135deg, #e91e63, #9b59b6);
}

.challenge-icon.red-orange {
  background: linear-gradient(135deg, #e74c3c, #f39c12);
}

.challenge-card h3 {
  font-size: 1.9rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.challenge-card:hover h3 {
  color: var(--logo-gradient-end);
  transform: scale(1.05);
}

.challenge-card p {
  font-size: 1.1rem;
  color: var(--footer-text);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.challenge-card:hover p {
  color: var(--footer-heading);
}

/* Block 6: Why Choose Section - Enhanced */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card-gradient-2);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card>* {
  position: relative;
  z-index: 2;
}

.feature-icon {
  width: 110px;
  height: 110px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.8rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-heavy);
}

.feature-icon.green {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.feature-icon.purple {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.feature-icon.pink {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

.feature-icon.orange {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.feature-card h3 {
  font-size: 1.9rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--logo-gradient-end);
  transform: scale(1.05);
}

.feature-card p {
  font-size: 1.1rem;
  color: var(--footer-text);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: var(--footer-heading);
}

/* About Page Specific Styles */
.about-page {
  padding: 0;
}

/* Story Section */
.story-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.story-content {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--footer-text);
  margin-bottom: 20px;
}

.story-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.story-badge i {
  color: #f1c40f;
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.story-badge span {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  display: block;
  margin-bottom: 10px;
}

.story-badge p {
  font-size: 1rem;
  color: var(--footer-text);
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

/* Proudly Section */
.proudly-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.proudly-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.proudly-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--footer-text);
  margin-bottom: 20px;
}

/* Responsible Section */
.responsible-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.support-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.support-block h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 20px;
}

.support-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--footer-text);
  margin-bottom: 30px;
}

.support-block .btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Contact Page Specific Styles */
.contact-page {
  padding: 0;
}

/* Get in Touch Section */
.get-in-touch-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form Styles */
.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 15px;
}

.contact-form>p {
  font-size: 1.1rem;
  color: var(--footer-text);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--footer-heading);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--logo-gradient-end);
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: linear-gradient(135deg, #3498db, #9b59b6);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

/* Contact Information Styles */
.contact-info-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-icon.red-pink {
  background: linear-gradient(135deg, #e74c3c, #e91e63);
}

.contact-icon.green {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.contact-icon.blue {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.contact-icon.purple-pink {
  background: linear-gradient(135deg, #9b59b6, #e91e63);
}

.contact-icon.orange {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.contact-details h4 {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 8px;
}

.contact-details p {
  font-size: 1rem;
  color: var(--footer-text);
  line-height: 1.6;
  margin-bottom: 5px;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 15px;
}

.faq-item p {
  font-size: 1rem;
  color: var(--footer-text);
  line-height: 1.6;
}

/* Privacy, Terms, and Responsible Gaming Page Styles */
.privacy-page,
.terms-page,
.responsible-page {
  padding: 0;
}

/* Overview Sections */
.privacy-overview-section,
.terms-overview-section,
.responsible-overview-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.privacy-overview,
.terms-overview,
.responsible-overview {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-overview p,
.terms-overview p,
.responsible-overview p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--footer-text);
}

/* Privacy Features Section */
.privacy-features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

/* Service Terms Section */
.service-terms-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

/* Commitment Section */
.commitment-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

/* Main Content Sections */
.privacy-content-section,
.terms-content-section,
.responsible-content-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.privacy-content,
.terms-content,
.responsible-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Content Header */
.content-header {
  text-align: center;
  margin-bottom: 50px;
}

.content-header h2 {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  font-size: 1.1rem;
  color: var(--footer-text);
  font-style: italic;
}

/* Content Intro */
.content-intro {
  margin-bottom: 50px;
}

.content-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--footer-text);
}

/* Policy/Terms Sections */
.policy-section,
.terms-section,
.content-section {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-section h3,
.terms-section h3,
.content-section h3 {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.policy-section h3::before,
.terms-section h3::before {
  content: '';
  width: 4px;
  height: 25px;
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  border-radius: 2px;
}

.policy-section p,
.terms-section p,
.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--footer-text);
  margin-bottom: 15px;
}

.policy-section ul,
.terms-section ul,
.content-section ul {
  margin: 20px 0;
  padding-left: 25px;
}

.policy-section li,
.terms-section li,
.content-section li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--footer-text);
  margin-bottom: 10px;
  position: relative;
}

.policy-section li::before,
.terms-section li::before,
.content-section li::before {
  content: '●';
  color: var(--logo-gradient-end);
  font-weight: bold;
  position: absolute;
  left: -20px;
}

/* Subsections */
.subsection {
  margin: 25px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border-left: 3px solid var(--logo-gradient-end);
}

.subsection h4 {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 15px;
}

/* Important Notice */
.important-notice {
  background: rgba(243, 156, 18, 0.1);
  border: 1px solid rgba(243, 156, 18, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  text-align: center;
}

.important-notice h4 {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  color: #f39c12;
  margin-bottom: 15px;
}

.important-notice p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--footer-text);
}

/* Remember Note */
.remember-note {
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  font-style: italic;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 25px 0;
}

.tool-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.tool-content h4 {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 10px;
}

.tool-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--footer-text);
}

/* Support Resources */
.support-resources {
  margin: 25px 0;
}

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.resource-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, #e74c3c, #e91e63);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.resource-content h4 {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--footer-heading);
  margin-bottom: 10px;
}

.resource-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--footer-text);
}

/* Contact Info in Content */
.contact-info {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-left: 3px solid var(--logo-gradient-end);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-info i {
  color: var(--logo-gradient-end);
  width: 20px;
}

/* Links in Content */
.policy-section a,
.terms-section a {
  color: var(--logo-gradient-end);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  transition: color 0.3s ease;
}

.policy-section a:hover,
.terms-section a:hover {
  color: var(--logo-gradient-start);
}

/* Footer Styles - Enhanced */
.footer {
  background: var(--footer-bg);
  padding: 60px 0 20px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.footer__column h3 {
  color: var(--footer-heading);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.footer__column:hover h3 {
  color: var(--logo-gradient-end);
}

.footer__logo img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.footer__logo:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.5));
}

.footer__logo h3 {
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer__logo:hover h3 {
  color: var(--logo-gradient-end);
}

.footer__logo p {
  line-height: 1.6;
  color: var(--footer-text);
  transition: color 0.3s ease;
}

.footer__logo:hover p {
  color: var(--footer-heading);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.footer__links li:hover {
  transform: translateX(5px);
}

.footer__links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
  display: inline-block;
  position: relative;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--logo-gradient-end);
  transition: width 0.3s ease;
}

.footer__links a:hover {
  color: var(--footer-heading);
}

.footer__links a:hover::after {
  width: 100%;
}

.bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer__links li:hover .bullet {
  transform: scale(1.2);
}

.bullet.orange {
  background: var(--footer-bullet-orange);
}

.bullet.green {
  background: var(--footer-bullet-green);
}

/* Support Items - Enhanced */
.support-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.support-item:hover {
  transform: translateX(5px);
}

.support-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.support-item:hover .support-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.support-icon.blue {
  background: var(--support-icon-blue);
}

.support-icon.green {
  background: var(--support-icon-green);
}

.support-icon.purple {
  background: var(--support-icon-purple);
}

.support-info {
  display: flex;
  flex-direction: column;
}

.support-title {
  color: var(--footer-heading);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  transition: color 0.3s ease;
}

.support-item:hover .support-title {
  color: var(--logo-gradient-end);
}

.support-detail {
  color: var(--footer-text);
  font-size: 12px;
  transition: color 0.3s ease;
}

.support-item:hover .support-detail {
  color: var(--footer-heading);
}

/* Footer Bottom - Enhanced */
.footer__bottom {
  border-top: 1px solid var(--footer-text);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.footer__copyright {
  color: var(--footer-text);
  transition: color 0.3s ease;
}

.footer__bottom:hover .footer__copyright {
  color: var(--footer-heading);
}

.problem-gambling-btn {
  background: var(--problem-gambling-btn);
  color: var(--footer-heading);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.problem-gambling-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.problem-gambling-btn:hover {
  background: #a03a5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.problem-gambling-btn:hover::before {
  left: 0;
}

/* Additional Enhanced Animations */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Enhanced Hover Effects for All Cards */
.stat-card,
.category-card,
.game-card,
.challenge-card,
.feature-card,
.faq-item,
.contact-form-container,
.contact-info-container,
.privacy-content,
.terms-content,
.responsible-content {
  position: relative;
  overflow: hidden;
}

.stat-card::after,
.category-card::after,
.game-card::after,
.challenge-card::after,
.feature-card::after {
  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.6s ease;
  z-index: 3;
}

.stat-card:hover::after,
.category-card:hover::after,
.game-card:hover::after,
.challenge-card:hover::after,
.feature-card:hover::after {
  left: 100%;
}

/* Enhanced Button Animations */
.btn-play,
.btn-submit,
.play-now-btn {
  position: relative;
  overflow: hidden;
}

.btn-play::before,
.btn-submit::before,
.play-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-play:hover::before,
.btn-submit:hover::before,
.play-now-btn:hover::before {
  left: 100%;
}

/* Enhanced Icon Animations */
.feature-icon,
.category-icon,
.challenge-icon,
.stat-icon {
  position: relative;
}

.feature-icon::after,
.category-icon::after,
.challenge-icon::after,
.stat-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: -1;
}

.feature-card:hover .feature-icon::after,
.category-card:hover .category-icon::after,
.challenge-card:hover .challenge-icon::after,
.stat-card:hover .stat-icon::after {
  width: 120%;
  height: 120%;
}

/* Enhanced Text Animations */
.section-header h2,
.content-header h2 {
  position: relative;
}

.section-header h2::after,
.content-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-gradient-start), var(--logo-gradient-end));
  transform: translateX(-50%);
  transition: width 0.6s ease;
  border-radius: 2px;
}

.section-header:hover h2::after,
.content-header:hover h2::after {
  width: 80%;
}

/* Enhanced Form Animations */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

/* Enhanced Mobile Menu */
.header__mobile-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--logo-gradient-end);
}

.header__mobile-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: var(--logo-gradient-start);
}

/* Enhanced Scroll Animations */
@media (prefers-reduced-motion: no-preference) {

  .stat-card,
  .category-card,
  .game-card,
  .challenge-card,
  .feature-card {
    animation: slideInFromBottom 0.8s ease-out both;
  }

  .stat-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .stat-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .stat-card:nth-child(3) {
    animation-delay: 0.3s;
  }

  .stat-card:nth-child(4) {
    animation-delay: 0.4s;
  }

  .category-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .category-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .category-card:nth-child(3) {
    animation-delay: 0.3s;
  }

  .category-card:nth-child(4) {
    animation-delay: 0.4s;
  }

  .category-card:nth-child(5) {
    animation-delay: 0.5s;
  }

  .category-card:nth-child(6) {
    animation-delay: 0.6s;
  }

  .game-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .game-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .game-card:nth-child(3) {
    animation-delay: 0.3s;
  }

  .game-card:nth-child(4) {
    animation-delay: 0.4s;
  }

  .game-card:nth-child(5) {
    animation-delay: 0.5s;
  }

  .challenge-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .challenge-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .challenge-card:nth-child(3) {
    animation-delay: 0.3s;
  }

  .challenge-card:nth-child(4) {
    animation-delay: 0.4s;
  }

  .feature-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .feature-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .feature-card:nth-child(3) {
    animation-delay: 0.3s;
  }

  .feature-card:nth-child(4) {
    animation-delay: 0.4s;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg);
    padding: 20px;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(15px);
  }

  .header__nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .header__mobile-toggle {
    display: flex;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .container {
    padding: 0 15px;
  }

  .hero-section h1 {
    font-size: 3.5rem;
  }

  .hero-section h2 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 2.8rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-row {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .challenges-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .story-badge {
    padding: 20px;
  }

  .support-block {
    padding: 30px 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tool-item,
  .resource-item {
    flex-direction: column;
    text-align: center;
  }

  .content-header h2 {
    font-size: 2.5rem;
  }

  .policy-section,
  .terms-section,
  .content-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .header__logo img {
    width: 40px;
    height: 40px;
  }

  .logo-title {
    font-size: 20px;
  }

  .logo-subtitle {
    font-size: 10px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer__top {
    gap: 25px;
  }

  .hero-section h1 {
    font-size: 2.8rem;
  }

  .hero-section h2 {
    font-size: 1.5rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .category-card {
    padding: 30px 20px;
  }

  .challenge-card {
    padding: 30px 20px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .story-badge {
    padding: 20px;
  }

  .story-badge span {
    font-size: 1.1rem;
  }

  .support-block {
    padding: 25px 20px;
  }

  .support-block h3 {
    font-size: 1.5rem;
  }

  .content-header h2 {
    font-size: 2rem;
  }

  .policy-section h3,
  .terms-section h3,
  .content-section h3 {
    font-size: 1.5rem;
  }

  .policy-section,
  .terms-section,
  .content-section {
    padding: 15px;
  }

  .important-notice {
    padding: 20px 15px;
  }

  .tool-item,
  .resource-item {
    padding: 15px;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 25px 20px;
  }

  .contact-form h3,
  .contact-info h3 {
    font-size: 1.5rem;
  }

  .faq-item {
    padding: 25px 20px;
  }

  .hero-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .feature-item {
    padding: 12px 20px;
  }

  .feature-item i {
    font-size: 1.1rem;
  }

  .featured-banner {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .game-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

/* Gradient Line Separator */
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-line);
}