/* ===== OPENPATH THEME ===== */
/* OpenPath - Dark Adventure Theme */

/* CSS Variables - OpenPath Color Palette */
:root {
  /* Primary OpenPath Colors */
  --openpath-dark-blue: #1a237e; /* Deep dark blue */
  --openpath-electric-blue: #2196f3; /* Electric blue */
  --openpath-deep-purple: #4a148c; /* Deep purple */
  --openpath-neon-cyan: #00bcd4; /* Neon cyan */
  --openpath-bright-orange: #ff5722; /* Bright orange */
  --openpath-gold: #ffc107; /* Gold accent */

  /* Background Colors - Better contrast */
  --bg-primary: #0d1421; /* Deep dark blue */
  --bg-secondary: #1a237e; /* Dark blue */
  --bg-accent: #283593; /* Medium blue */
  --bg-dark: #000000; /* Pure black */
  --bg-card: #1e1e2e; /* Dark blue-gray */
  --bg-surface: #2a2a3e; /* Dark gray-blue */

  /* Text Colors - Better contrast */
  --text-primary: #ffffff; /* Pure white */
  --text-secondary: #e0e0e0; /* Light gray */
  --text-light: #b0b0b0; /* Medium gray */
  --text-muted: #808080; /* Darker gray */
  --text-white: #ffffff; /* Pure white */

  /* Accent Colors - OpenPath Theme */
  --accent-sparkle: #2196f3; /* Electric blue */
  --accent-magic: #00bcd4; /* Neon cyan */
  --accent-rose: #4a148c; /* Deep purple */
  --accent-sky: #ff5722; /* Bright orange */

  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;

  /* Typography */
  --font-primary: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-size-base: 16px;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 20px rgba(33, 150, 243, 0.5),
    0 0 40px rgba(0, 188, 212, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(
    135deg,
    var(--bg-dark) 0%,
    var(--bg-primary) 50%,
    var(--bg-secondary) 100%
  );
  min-height: 100vh;
}
body.no-scroll {
  overflow: hidden;
}

main {
  padding-top: 80px; /* Spacer for fixed header */
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

a {
  color: var(--accent-magic);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-sparkle);
  transform: translateY(-2px);
}

/* ===== LAYOUT & CONTAINERS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  /* content: "🎯"; */
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  animation: neonGlow 2s ease-in-out infinite;
  color: var(--openpath-neon-cyan);
}

@keyframes neonGlow {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    filter: drop-shadow(0 0 5px var(--openpath-neon-cyan));
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    filter: drop-shadow(0 0 20px var(--openpath-neon-cyan))
      drop-shadow(0 0 30px var(--openpath-neon-cyan));
  }
}

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(
    135deg,
    var(--openpath-dark-blue),
    var(--openpath-deep-purple)
  );
  padding: var(--space-sm) 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.logo a {
  color: var(--text-white) !important;
  transition: transform var(--transition-fast);
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xs) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: var(--transition-normal);
}

.logo:hover svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 119, 190, 0.3));
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan),
    var(--openpath-deep-purple)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 10px var(--openpath-electric-blue))
    drop-shadow(0 0 20px var(--openpath-electric-blue));
}

/* ===== FULLSCREEN NAVIGATION ===== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-rose);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal),
    visibility var(--transition-normal);
  z-index: 1001;
}

.main-nav.active {
  opacity: 1;
  visibility: visible;
}

.main-nav ul {
  list-style: none;
  text-align: center;
}

.main-nav.active li {
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.main-nav.active li:nth-child(1) {
  animation-delay: 0.2s;
}
.main-nav.active li:nth-child(2) {
  animation-delay: 0.3s;
}
.main-nav.active li:nth-child(3) {
  animation-delay: 0.4s;
}
.main-nav.active li:nth-child(4) {
  animation-delay: 0.5s;
}

.main-nav a {
  color: var(--text-white);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  padding: var(--space-sm) var(--space-lg);
  display: block;
  transition: var(--transition-normal);
}

.main-nav a:hover {
  color: var(--accent-sparkle);
  transform: scale(1.1);
}

/* ===== BURGER MENU TOGGLE ===== */
.mobile-menu-toggle {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1002; /* Above nav */
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-white);
  margin: 6px 0;
  transition: var(--transition-normal);
  border-radius: var(--radius-sm);
}

.mobile-menu-toggle.active span {
  background: var(--text-white);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "🎯";
  position: absolute;
  top: 20%;
  right: 10%;
  font-size: 8rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: "⚡";
  position: absolute;
  bottom: 20%;
  left: 10%;
  font-size: 6rem;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
  background: linear-gradient(
    135deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--openpath-electric-blue),
    var(--openpath-deep-purple)
  );
  color: var(--text-white);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-weight: 700;
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.hero-image {
  text-align: center;
  position: relative;
}

.game-preview {
  font-size: 8rem;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(33, 150, 243, 0.3));
}

.hero-updated {
  background-image: linear-gradient(135deg, #00000000 0%, #0d1421 100%),
    url(../assets/hero.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-updated .hero-grid {
  direction: rtl;
}

.hero-updated .hero-grid > * {
  direction: ltr;
}

.hero-updated .hero-content {
  text-align: right;
}

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

/* ===== CARDS & GRIDS ===== */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.tip-card,
.feature-card,
.review-card {
  background: var(--bg-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tip-card::before,
.feature-card::before,
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan),
    var(--openpath-deep-purple)
  );
}

.tip-card:hover,
.feature-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-card .icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  text-align: center;
  color: var(--accent-sparkle);
  margin-bottom: var(--space-sm);
}

.review-card p {
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.review-card .author {
  text-align: right;
  color: var(--accent-magic);
  font-weight: 600;
}

/* ===== GAME DESCRIPTION SECTION ===== */
.game-description-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  margin-top: var(--space-xl);
}

.description-text {
  max-width: none;
}

.description-paragraphs {
  margin-top: var(--space-lg);
}

.lead-paragraph {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.description-paragraphs p {
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  color: var(--text-secondary);
}

.highlight-box {
  background: linear-gradient(
    135deg,
    var(--openpath-electric-blue),
    var(--openpath-deep-purple)
  );
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-box h3 {
  color: var(--text-white);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-xl);
}

.highlight-box p {
  color: var(--text-white);
  margin-bottom: 0;
  opacity: 0.95;
}

.description-visual {
  position: sticky;
  top: 100px;
}

.visual-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.visual-item {
  background: var(--bg-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.visual-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.visual-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 4px 8px rgba(33, 150, 243, 0.3));
}

.visual-item h4 {
  color: var(--accent-sparkle);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-lg);
}

.visual-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: var(--font-size-base);
}

/* ===== MODERN FEEDBACK SECTION ===== */
.feedback-section {
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  position: relative;
  overflow: hidden;
}

.feedback-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(33, 150, 243, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 188, 212, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.feedback-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.feedback-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-top: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.modern-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.modern-review-card {
  background: var(--bg-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan),
    var(--openpath-bright-orange)
  );
}

.modern-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-rating {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.stars {
  display: flex;
  gap: 2px;
  margin-right: var(--space-sm);
}

.star {
  color: var(--openpath-gold);
  font-size: 1.2rem;
}

.rating-number {
  color: var(--accent-sparkle);
  font-weight: 600;
  font-size: var(--font-size-sm);
}

.review-text {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-style: italic;
  position: relative;
}

.review-text::before {
  content: "\201C";
  font-size: 4rem;
  color: var(--openpath-electric-blue);
  position: absolute;
  top: -10px;
  left: -20px;
  opacity: 0.3;
  font-family: serif;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-white);
  font-size: var(--font-size-lg);
}

.author-info h4 {
  color: var(--text-primary);
  margin-bottom: 2px;
  font-size: var(--font-size-base);
}

.author-info p {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  margin: 0;
}

.feedback-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.stat-label {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  font-weight: 500;
}

/* ===== ADVENTURE SHOWCASE SECTION ===== */
.adventure-showcase {
  margin-top: var(--space-xl);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.showcase-item {
  background: var(--bg-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.showcase-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan),
    var(--openpath-deep-purple)
  );
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.showcase-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 4px 8px rgba(33, 150, 243, 0.3));
}

.showcase-item h3 {
  color: var(--accent-sparkle);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-xl);
}

.showcase-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== MODERN FOOTER ===== */
.site-footer {
  background: linear-gradient(
    135deg,
    var(--bg-dark) 0%,
    var(--bg-primary) 50%,
    var(--bg-secondary) 100%
  );
  color: var(--text-primary);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--openpath-electric-blue) 50%,
    transparent 100%
  );
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  text-decoration: none;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.footer-logo:hover {
  color: var(--accent-magic);
  transform: translateY(-2px);
}

.footer-logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(33, 150, 243, 0.3));
}

.footer-logo-text {
  font-size: var(--font-size-xl);
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: var(--openpath-electric-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.footer-section h4 {
  color: var(--text-white);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
  position: relative;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan)
  );
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--font-size-base);
  transition: var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-magic);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-magic);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

.contact-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-magic);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.footer-copyright {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--text-light);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--accent-magic);
}

/* ===== NEWS PAGE SECTIONS ===== */
.news-hero {
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  position: relative;
  overflow: hidden;
}

.news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(33, 150, 243, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(0, 188, 212, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.news-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.news-hero-description {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.news-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background: var(--bg-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 8px rgba(33, 150, 243, 0.3));
}

.stat-content {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

.stat-label {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  font-weight: 500;
}

.news-categories {
  background: var(--bg-secondary);
  position: relative;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.category-card {
  background: var(--bg-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan),
    var(--openpath-bright-orange)
  );
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 4px 8px rgba(33, 150, 243, 0.3));
}

.category-card h3 {
  color: var(--text-primary);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.category-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.category-count {
  background: linear-gradient(
    135deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan)
  );
  color: var(--text-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  display: inline-block;
}

/* ===== COOKIE BANNER ===== */
.privacy-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--openpath-electric-blue),
    var(--openpath-deep-purple)
  );
  color: var(--text-primary);
  padding: var(--space-md);
  z-index: 1001;
  transform: translateY(100%);
  transition: var(--transition-normal);
}

.privacy-notice.visible {
  transform: translateY(0);
}

.privacy-notice-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.privacy-notice a {
  color: var(--accent-magic);
  text-decoration: underline;
}

.privacy-notice-actions .btn {
  color: var(--text-white);
  padding: var(--space-sm) var(--space-md);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal),
    visibility var(--transition-normal);
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-surface);
  margin: 5% auto;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-content h2 {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-align: center;
}

.modal-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent-sparkle);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--accent-rose);
  transform: scale(1.1);
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--bg-secondary);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-base);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-sparkle);
  box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.15);
}

.form-success {
  background: var(--bg-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.form-success p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.form-success h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

/* ===== NEWS PAGE ===== */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--space-lg);
}

.update-card {
  background: var(--bg-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.update-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--openpath-electric-blue),
    var(--openpath-neon-cyan),
    var(--openpath-bright-orange)
  );
}

.update-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.update-card .date {
  color: var(--accent-magic);
  font-weight: 600;
  font-size: var(--font-size-sm);
}

.update-card h3 {
  color: var(--accent-sparkle);
  margin: var(--space-sm) 0;
}

.update-card .read-more {
  margin-top: var(--space-md);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.contact-info {
  background: var(--bg-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
  color: var(--accent-sparkle);
  margin-bottom: var(--space-md);
}

.contact-info p {
  margin-bottom: var(--space-sm);
}

.contact-info a {
  color: var(--accent-magic);
}

.map-container {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  background: var(--bg-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h1 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--accent-sparkle);
}

.legal-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .game-description-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .description-visual {
    position: static;
    order: -1;
  }

  .visual-grid {
    flex-direction: row;
    gap: var(--space-md);
  }

  .visual-item {
    flex: 1;
    padding: var(--space-md);
  }

  .visual-icon {
    font-size: 2rem;
  }

  .visual-item h4 {
    font-size: var(--font-size-base);
  }

  .visual-item p {
    font-size: var(--font-size-sm);
  }

  .modern-reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .feedback-stats {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .modern-review-card {
    padding: var(--space-lg);
  }

  .review-text {
    font-size: var(--font-size-base);
  }

  .review-text::before {
    font-size: 3rem;
    top: -5px;
    left: -15px;
  }

  .tips-grid,
  .features-grid,
  .reviews-grid,
  .updates-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

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

  .privacy-notice-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
  .game-iframe-wrapper {
    padding-bottom: 75%; /* 4:3 aspect ratio for better mobile experience */
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
    margin-top: var(--space-lg);
  }

  .hero-content .btn {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .hero {
    padding: var(--space-xl) 0;
  }

  .hero-content h1 {
    font-size: var(--font-size-3xl);
  }

  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-base);
  }

  .game-description-content {
    gap: var(--space-lg);
  }

  .visual-grid {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .visual-item {
    padding: var(--space-sm);
  }

  .lead-paragraph {
    font-size: var(--font-size-lg);
  }

  .highlight-box {
    padding: var(--space-lg);
  }

  .modern-review-card {
    padding: var(--space-md);
  }

  .review-text {
    font-size: var(--font-size-sm);
  }

  .review-text::before {
    font-size: 2.5rem;
    top: -3px;
    left: -10px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: var(--font-size-base);
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .feedback-subtitle {
    font-size: var(--font-size-base);
  }

  .news-stats {
    gap: var(--space-md);
  }

  .stat-card {
    padding: var(--space-md);
    flex-direction: column;
    text-align: center;
  }

  .stat-icon {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .categories-grid {
    gap: var(--space-md);
  }

  .category-card {
    padding: var(--space-md);
  }

  .category-icon {
    font-size: 2rem;
  }

  .category-card h3 {
    font-size: var(--font-size-lg);
  }

  .footer-content {
    gap: var(--space-lg);
  }

  .footer-logo-text {
    font-size: var(--font-size-lg);
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .footer-legal {
    gap: var(--space-md);
  }

  .footer-legal a {
    font-size: var(--font-size-xs);
  }

  .news-stats {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .stat-card {
    padding: var(--space-lg);
  }

  .stat-icon {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .category-card {
    padding: var(--space-lg);
  }

  .category-icon {
    font-size: 2.5rem;
  }
}

/* ===== ANIMATIONS & EFFECTS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tip-card,
.feature-card,
.review-card,
.update-card {
  animation: fadeInUp 0.6s ease-out;
}

.tip-card:nth-child(2) {
  animation-delay: 0.1s;
}
.tip-card:nth-child(3) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.2s;
}
.review-card:nth-child(2) {
  animation-delay: 0.1s;
}
.review-card:nth-child(3) {
  animation-delay: 0.2s;
}
.update-card:nth-child(2) {
  animation-delay: 0.1s;
}
.update-card:nth-child(3) {
  animation-delay: 0.2s;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
