/* Nextchaptergame.site - Gaming Blog CSS Variables */
:root {
  --gaming-blue: #0f172a;
  --gaming-purple: #7c3aed;
  --gaming-cyan: #06b6d4;
  --gaming-emerald: #10b981;
  --gaming-orange: #f59e0b;
  --gaming-red: #ef4444;
  --gaming-pink: #ec4899;
  --gaming-indigo: #6366f1;
  --gaming-cyan: #06b6d4;
  --gaming-green: #10b981;
  --gaming-orange: #f59e0b;
  --gaming-purple: #8b5cf6;
  --gaming-red: #ef4444;
  --gaming-yellow: #eab308;
  --gaming-white: #ffffff;
  --gaming-black: #1f2937;
  --gaming-gray: #6b7280;
  --gaming-shadow: rgba(0, 0, 0, 0.2);
  --gaming-gradient: linear-gradient(
    135deg,
    var(--gaming-blue),
    var(--gaming-purple)
  );
  --gaming-accent-gradient: linear-gradient(
    45deg,
    var(--gaming-cyan),
    var(--gaming-green)
  );
  --body-bg-light: #f8fafc;
  --body-bg-dark: #1e293b;
  --border-light: #e2e8f0;
  --success-green: #10b981;
  --success-green-dark: #059669;
  --hover-blue: #3b82f6;
  --overlay-dark: rgba(0, 0, 0, 0.8);
  --overlay-light: rgba(255, 255, 255, 0.95);
  --overlay-lighter: rgba(255, 255, 255, 0.9);
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.3);
  --shadow-dark: rgba(0, 0, 0, 0.6);
  --gaming-blue-transparent: rgba(30, 58, 138, 0.3);
  --gaming-purple-transparent: rgba(139, 92, 246, 0.8);
  --gaming-cyan-transparent: rgba(6, 182, 212, 0.8);
}

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

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--gaming-black);
  min-height: 100vh;
  background: black;
}

/* Gaming Header Styles */
.royal-header {
  background: var(--gaming-gradient);
  box-shadow: 0 4px 20px var(--gaming-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.royal-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gaming-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.royal-logo:hover {
  color: var(--gaming-yellow);
  transform: scale(1.05);
}

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

.logo-text {
  text-shadow: 2px 2px 4px var(--gaming-shadow);
}

/* Navigation Styles */
.royal-navigation .nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--gaming-white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-link:hover {
  background: var(--gaming-white);
  color: var(--gaming-cyan);
}

/* Main Content Styles */
.royal-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--gaming-purple);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px var(--gaming-shadow);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gaming-accent-gradient);
  border-radius: 2px;
}

/* Hero Section */
.pixel-arena-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  background: var(--gaming-accent-gradient);
  border-radius: 30px;
  padding: 4rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.game-title {
  font-size: 4rem;
  color: var(--gaming-white);
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px var(--gaming-shadow);
}

.game-slogan {
  font-size: 1.5rem;
  color: var(--gaming-white);
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 2px 2px 4px var(--gaming-shadow);
}

.start-run-button {
  background: var(--gaming-yellow);
  color: var(--gaming-black);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--gaming-shadow);
  text-decoration: none;
  display: inline-block;
}

.start-run-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px var(--gaming-shadow);
  background: var(--crown-yellow);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
}

/* Royal Features Grid */
.royal-features {
  margin-bottom: 4rem;
}

.royal-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.royal-feature-card {
  background: var(--gaming-white);
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.royal-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gaming-accent-gradient);
}

.royal-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
  border-color: var(--gaming-cyan);
}

.royal-feature-title {
  font-size: 1.8rem;
  color: var(--gaming-purple);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px var(--gaming-shadow);
}

.royal-feature-description {
  color: var(--gaming-black);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.royal-feature-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.royal-feature-tag {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--gaming-shadow);
  transition: all 0.3s ease;
}

.royal-feature-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px var(--gaming-shadow);
}

/* Princess Guide Section */
.princess-guide {
  margin-bottom: 4rem;
}

.royal-controls-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.royal-control-item {
  background: linear-gradient(var(--overlay-light), var(--overlay-lighter)),
    url("../assets/main-hero-image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.royal-control-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gaming-accent-gradient);
}

.royal-control-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
  border-color: var(--gaming-cyan);
}

.royal-control-title {
  color: var(--gaming-purple);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px var(--gaming-shadow);
  position: relative;
  z-index: 2;
}

.royal-control-description {
  color: var(--gaming-black);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.royal-control-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.royal-tip {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--gaming-shadow);
  transition: all 0.3s ease;
}

.royal-tip:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px var(--gaming-shadow);
}

/* Royal Testimonials */
.royal-testimonials {
  margin-bottom: 4rem;
}

.royal-testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.royal-testimonial-card {
  background: var(--gaming-accent-gradient);
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.royal-testimonial-card::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 25px;
  font-size: 5rem;
  color: var(--gaming-white);
  opacity: 0.2;
  font-family: serif;
}

.royal-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
  border-color: var(--gaming-yellow);
}

.royal-testimonial-text {
  color: var(--gaming-white);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.royal-testimonial-author {
  color: var(--gaming-yellow);
  font-weight: 700;
  text-align: right;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px var(--gaming-shadow);
  position: relative;
  z-index: 2;
}

/* Royal Wardrobe Collection */
.royal-wardrobe-collection {
  margin-bottom: 4rem;
}

.royal-wardrobe-layout {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.royal-wardrobe-cards {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.royal-wardrobe-card {
  background: var(--gaming-white);
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--gaming-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.royal-wardrobe-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gaming-accent-gradient);
}

.royal-wardrobe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
  border-color: var(--gaming-cyan);
}

.royal-wardrobe-title {
  color: var(--gaming-purple);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px var(--gaming-shadow);
}

.royal-wardrobe-effect {
  color: var(--gaming-black);
  line-height: 1.4;
  font-size: 0.85rem;
  margin: 0;
  font-weight: 500;
}

.royal-wardrobe-info {
  flex: 0 0 60%;
  background: var(--gaming-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.royal-wardrobe-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gaming-accent-gradient);
}

.royal-wardrobe-info-title {
  color: var(--gaming-purple);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px var(--gaming-shadow);
}

.royal-wardrobe-info-text {
  color: var(--gaming-black);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.royal-wardrobe-info-text:last-child {
  margin-bottom: 0;
}

/* Royal Progress & Charisma Hub */
.royal-progress-charisma {
  margin-bottom: 4rem;
}

.royal-stats-container {
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.royal-stat-card {
  background: linear-gradient(var(--overlay-light), var(--overlay-lighter)),
    url("../assets/main-hero-image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  flex: 1;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.royal-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gaming-accent-gradient);
}

.royal-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
  border-color: var(--gaming-cyan);
}

.royal-stat-number {
  font-size: 2.5rem;
  color: var(--charisma-glow);
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px var(--gaming-shadow);
  position: relative;
  z-index: 2;
}

.royal-stat-label {
  color: var(--gaming-purple);
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px var(--gaming-shadow);
  position: relative;
  z-index: 2;
}

/* Gaming Footer Styles */
.footer-royal {
  background: var(--gaming-gradient);
  color: var(--gaming-white);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer-royal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
  opacity: 0.5;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

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

.footer-logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gaming-white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
  font-size: 1.2rem;
  color: var(--gaming-cyan);
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.footer-navigation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.footer-section {
  min-width: 200px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--gaming-cyan);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gaming-accent-gradient);
  border-radius: 1px;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-link {
  color: var(--gaming-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gaming-cyan);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--gaming-cyan);
  transform: translateX(5px);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.contact-icon {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.footer-contact-link {
  color: var(--gaming-white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-contact-link:hover {
  color: var(--gaming-cyan);
  transform: translateX(3px);
}

.footer-contact-text {
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  text-align: center;
  /* background: rgba(0, 0, 0, 0.1); */
}

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

.footer-copyright-text {
  color: var(--gaming-white);
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 0.95rem;
  margin: 0;
}

.footer-tagline-bottom {
  color: var(--gaming-cyan);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Footer Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 3rem 1.5rem 0;
  }

  .footer-main {
    gap: 2.5rem;
  }

  .footer-navigation {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .footer-tagline {
    font-size: 1.1rem;
  }

  .footer-description {
    font-size: 0.95rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 2.5rem 1rem 0;
  }

  .footer-logo {
    font-size: 1.8rem;
  }

  .footer-tagline {
    font-size: 1rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-title {
    font-size: 1.2rem;
  }

  .footer-link {
    font-size: 0.95rem;
  }

  .footer-contact-item {
    padding: 0.6rem 0;
  }

  .footer-copyright-text {
    font-size: 0.9rem;
  }

  .footer-tagline-bottom {
    font-size: 0.85rem;
  }
}

/* Form Styles */
.royal-contact-form {
  background: var(--gaming-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gaming-purple);
  font-weight: 600;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-textarea {
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gaming-cyan);
  box-shadow: 0 0 10px var(--princess-pink-transparent);
}

.submit-button {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gaming-shadow);
}

/* Map Container */
.map-container {
  background: var(--gaming-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--gaming-shadow);
}

/* Removed all animations - keeping only transitions and hover effects */

/* Utility Classes */
.dress-sprint {
  transition: all 0.3s ease;
}

.dress-sprint:hover {
  transform: translateY(-2px);
}

.charisma-hub {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
}

.mud-dodge {
  background: var(--mud-brown);
  color: var(--gaming-white);
}

.royal-runway {
  background: var(--gaming-gradient);
  color: var(--gaming-white);
}

/* Processing Overlay */
.processing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.processing-overlay.show {
  opacity: 1;
  visibility: visible;
}

.processing-dots {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.processing-dot {
  width: 20px;
  height: 20px;
  background: var(--gaming-cyan);
  border-radius: 50%;
  animation: processingPulse 1.5s infinite ease-in-out;
}

.processing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.processing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes processingPulse {
  0%,
  60%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  30% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.processing-text {
  color: var(--gaming-white);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

/* Simple Notification System */
.simple-notification {
  position: fixed;
  bottom: 30px;
  left: 20px;
  right: 20px;
  transform: translateY(100px);
  background: linear-gradient(
    45deg,
    var(--success-green),
    var(--success-green-dark)
  );
  color: var(--gaming-white);
  padding: 1rem 2rem;
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  z-index: 10001;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: none;
  text-align: center;
  font-weight: 700;
  text-shadow: 2px 2px 4px var(--shadow-medium);
}

.simple-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Floating Sparkles - Animation removed */

/* Improvement and Diary Cards */
.improvement-card,
.diary-card {
  background: var(--gaming-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.improvement-card:hover,
.diary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
}

.improvement-title,
.diary-title {
  color: var(--gaming-purple);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.improvement-date,
.diary-date {
  color: var(--gaming-cyan);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.improvement-description,
.diary-story {
  color: var(--gaming-black);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.diary-author {
  color: var(--sprint-vibe);
  font-style: italic;
  font-weight: 500;
}

/* Contact Detail Items */
.contact-detail-item {
  background: var(--gaming-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-detail-item .contact-icon {
  font-size: 2rem;
  color: var(--gaming-cyan);
}

.contact-detail-item .contact-info h3 {
  color: var(--gaming-purple);
  margin-bottom: 0.5rem;
}

.contact-detail-item .contact-info p {
  color: var(--gaming-black);
  margin: 0;
}

.contact-detail-item .contact-info a {
  color: var(--gaming-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-item .contact-info a:hover {
  color: var(--charisma-glow);
}

.contact-detail-item .contact-description {
  color: var(--gaming-black);
  font-size: 0.9rem;
  margin-top: 0.8rem;
  opacity: 0.8;
  line-height: 1.4;
}

/* Responsive adjustments for cookie banner */
@media (max-width: 767px) {
  .royal-notification {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }

  .royal-notification.show {
    transform: translateY(0);
  }
}

/* Legal Pages Styling */
.disclaimer-content,
.cookies-content,
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-content h1,
.cookies-content h1,
.privacy-content h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--gaming-purple);
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px var(--gaming-shadow);
}

.disclaimer-text,
.cookies-text,
.privacy-text {
  background: var(--gaming-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  line-height: 1.8;
}

.disclaimer-text h2,
.cookies-text h2,
.privacy-text h2 {
  color: var(--gaming-purple);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.disclaimer-text h3,
.cookies-text h3,
.privacy-text h3 {
  color: var(--gaming-cyan);
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  border-bottom: 2px solid var(--gaming-yellow);
  padding-bottom: 0.5rem;
}

.disclaimer-text h4,
.cookies-text h4,
.privacy-text h4 {
  color: var(--sprint-vibe);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem 0;
}

.disclaimer-text p,
.cookies-text p,
.privacy-text p {
  margin-bottom: 1rem;
  color: var(--gaming-black);
}

.disclaimer-text ul,
.cookies-text ul,
.privacy-text ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.disclaimer-text li,
.cookies-text li,
.privacy-text li {
  margin-bottom: 0.5rem;
  color: var(--gaming-black);
}

.disclaimer-text strong,
.cookies-text strong,
.privacy-text strong {
  color: var(--gaming-purple);
  font-weight: 600;
}

.disclaimer-date,
.cookies-date,
.privacy-date {
  text-align: center;
  font-style: italic;
  color: var(--gaming-cyan);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gaming-yellow);
}

/* Cookie Types Grid */
.cookie-types {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-type {
  background: var(--gaming-white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--gaming-shadow);
  flex: 1;
  min-width: 250px;
  border-left: 4px solid var(--gaming-cyan);
}

.cookie-type h4 {
  color: var(--gaming-purple);
  margin-bottom: 0.5rem;
}

.cookie-type p {
  color: var(--gaming-black);
  margin: 0;
}

/* Info Collection Grid */
.info-collection {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.collection-type {
  background: var(--gaming-white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--gaming-shadow);
  flex: 1;
  min-width: 250px;
  border-left: 4px solid var(--sprint-vibe);
}

.collection-type h4 {
  color: var(--gaming-purple);
  margin-bottom: 0.5rem;
}

.collection-type p {
  color: var(--gaming-black);
  margin: 0;
}

/* Responsive adjustments for legal pages */
@media (max-width: 767px) {
  .disclaimer-text,
  .cookies-text,
  .privacy-text {
    padding: 1.5rem;
  }

  .cookie-types,
  .info-collection {
    flex-direction: column;
  }

  .cookie-type,
  .collection-type {
    min-width: 100%;
  }
}

/* Gaming Header Styles */
.gaming-header {
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.gaming-header .header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  gap: 2rem;
}

/* Logo Styles */
.logo-section {
  flex-shrink: 0;
}

.gaming-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease;
}

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

.logo-icon-wrapper {
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

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

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

.logo-subtext {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gaming-cyan);
  opacity: 0.8;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  flex: 1;
  justify-content: center;
}

.gaming-navigation .nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.5rem;
  backdrop-filter: blur(10px);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 25px;
}

.nav-link:hover::before {
  opacity: 0.2;
}

.nav-link:hover {
  /* color: white; */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.nav-icon {
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.nav-text {
  position: relative;
  z-index: 1;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.5rem;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-link:hover {
  background: rgba(6, 182, 212, 0.2);
  color: var(--gaming-cyan);
}

/* Search Section */
.search-section {
  flex-shrink: 0;
}

.search-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-input {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  outline: none;
  width: 200px;
  font-size: 0.9rem;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-button {
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  border: none;
  border-radius: 20px;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.search-icon {
  font-size: 1rem;
  color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.mobile-navigation {
  display: none;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
}

.mobile-navigation.active {
  display: block;
}

.mobile-nav-content {
  padding: 2rem;
}

.mobile-search {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-search-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 0.75rem 1rem;
  color: white;
  outline: none;
}

.mobile-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.mobile-search-button {
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  border: none;
  border-radius: 25px;
  padding: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  margin-bottom: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
  background: rgba(6, 182, 212, 0.2);
  color: var(--gaming-cyan);
  transform: translateX(5px);
}

.mobile-nav-icon {
  font-size: 1.2rem;
}

.mobile-nav-text {
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .search-section {
    display: none;
  }

  .gaming-navigation {
    gap: 1rem;
  }

  .nav-link {
    padding: 0.5rem 1rem;
  }

  .nav-text {
    display: none;
  }

  .nav-icon {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .search-section {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .gaming-header .header-container {
    padding: 1rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-subtext {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gaming-header .header-container {
    padding: 0.75rem;
    flex-direction: row;
    justify-content: space-around;
  }

  .logo-text-wrapper {
    display: none;
  }

  .mobile-nav-content {
    padding: 1rem;
  }
}

/* Top Games Section Styles */
.top-games-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.top-games-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.top-games-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.top-games-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.badge-icon {
  font-size: 1.1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, white, var(--gaming-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.game-review-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(6, 182, 212, 0.3);
}

.game-review-card.featured-review {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.game-review-image {
  position: relative;
  margin-bottom: 1.5rem;
}

.game-cover {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--gaming-purple), var(--gaming-cyan));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.game-rating-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.game-category {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.game-review-content {
  color: white;
}

.game-review-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.3;
}

.game-review-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.game-review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.author-name {
  font-weight: 600;
  color: white;
}

.review-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.game-review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(6, 182, 212, 0.2);
  color: var(--gaming-cyan);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

/* CTA Button */
.top-games-cta {
  text-align: center;
}

.view-all-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
  position: relative;
  overflow: hidden;
}

.view-all-reviews-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.5s ease;
}

.view-all-reviews-btn:hover::before {
  left: 100%;
}

.view-all-reviews-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

.btn-icon {
  font-size: 1.2rem;
}

.btn-text {
  font-weight: 600;
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.view-all-reviews-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .top-games-section {
    padding: 4rem 1rem;
  }

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

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .game-review-card.featured-review {
    grid-column: 1;
  }

  .game-cover {
    height: 150px;
  }

  .game-icon {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .game-review-card {
    padding: 1.5rem;
  }

  .game-review-title {
    font-size: 1.3rem;
  }

  .view-all-reviews-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* Gaming Features Section Styles */
.gaming-features-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
}

.gaming-features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.gaming-features-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gaming-features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gaming-features-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.gaming-features-header .section-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, white, var(--gaming-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gaming-features-header .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Gaming Features Grid */
.gaming-features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(6, 182, 212, 0.3);
}

.primary-feature {
  grid-row: 1 / 3;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.feature-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.feature-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.feature-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.feature-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gaming-cyan);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

.feature-content {
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.feature-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.highlight-tag {
  background: rgba(6, 182, 212, 0.2);
  color: var(--gaming-cyan);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Secondary Features */
.secondary-feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.secondary-feature .feature-icon-wrapper {
  margin-bottom: 0;
}

.secondary-feature .feature-icon {
  font-size: 2.5rem;
}

.secondary-feature .feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.secondary-feature .feature-description {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Feature Progress Bar */
.feature-progress {
  margin-top: 1rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Feature Badges */
.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge {
  background: rgba(124, 58, 237, 0.2);
  color: var(--gaming-purple);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

/* Feature Metrics */
.feature-metrics {
  margin-top: 1rem;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gaming-emerald);
  line-height: 1;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* Search Demo */
.search-demo {
  margin-top: 1rem;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.search-tag {
  background: rgba(16, 185, 129, 0.2);
  color: var(--gaming-emerald);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Community Stats */
.community-stats {
  margin-top: 1rem;
}

.community-stat {
  text-align: center;
}

/* Interactive Demo */
.interactive-demo {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.demo-header {
  text-align: center;
  margin-bottom: 3rem;
}

.demo-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.demo-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.demo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.demo-step {
  text-align: center;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.demo-step.active {
  opacity: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.genre-options,
.platform-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.genre-btn,
.platform-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.genre-btn.active,
.platform-btn.active {
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  border-color: transparent;
}

.genre-btn:hover,
.platform-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.recommendations-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rec-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rec-icon {
  font-size: 1.5rem;
}

.rec-name {
  flex: 1;
  color: white;
  font-weight: 500;
}

.rec-rating {
  color: var(--gaming-cyan);
  font-weight: 600;
}

/* CTA Section */
.gaming-features-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.cta-content {
  color: white;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn-primary {
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  color: white;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

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

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cta-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.floating-gaming-icons {
  position: relative;
  width: 200px;
  height: 200px;
}

.floating-gaming-icons .floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-gaming-icons .floating-icon:nth-child(1) {
  top: 10%;
  left: 10%;
}

.floating-gaming-icons .floating-icon:nth-child(2) {
  top: 20%;
  right: 15%;
}

.floating-gaming-icons .floating-icon:nth-child(3) {
  bottom: 20%;
  left: 20%;
}

.floating-gaming-icons .floating-icon:nth-child(4) {
  bottom: 10%;
  right: 10%;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .gaming-features-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .primary-feature {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 768px) {
  .gaming-features-section {
    padding: 4rem 1rem;
  }

  .gaming-features-header .section-title {
    font-size: 2.5rem;
  }

  .gaming-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .primary-feature {
    grid-column: 1;
    grid-row: 1;
  }

  .demo-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gaming-features-cta {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gaming-features-header .section-title {
    font-size: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .interactive-demo {
    padding: 2rem;
  }

  .gaming-features-cta {
    padding: 2rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

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

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Gaming Testimonials Section Styles */
.gaming-testimonials-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
}

.gaming-testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.gaming-testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gaming-testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gaming-testimonials-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.gaming-testimonials-header .section-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, white, var(--gaming-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gaming-testimonials-header .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Testimonials Grid */
.gaming-testimonials-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(6, 182, 212, 0.3);
}

.featured-testimonial {
  grid-row: 1 / 3;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.testimonial-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  position: relative;
  margin-bottom: 1rem;
}

.avatar-image {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gaming-purple), var(--gaming-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  margin-bottom: 0.5rem;
}

.avatar-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(45deg, var(--gaming-emerald), var(--gaming-cyan));
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.testimonial-rating {
  text-align: center;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star {
  font-size: 1.2rem;
  color: #ffd700;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.rating-text {
  font-size: 0.9rem;
  color: var(--gaming-cyan);
  font-weight: 600;
}

.testimonial-content {
  color: white;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: white;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  font-weight: 500;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--gaming-cyan);
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.9rem;
  color: var(--gaming-cyan);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.author-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.author-stats .stat {
  background: rgba(6, 182, 212, 0.2);
  color: var(--gaming-cyan);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.testimonial-meta {
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-date {
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-platform {
  background: rgba(124, 58, 237, 0.2);
  color: var(--gaming-purple);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

/* Community Stats */
.testimonials-stats {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 4rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stats-grid .stat-item {
  text-align: center;
}

.stats-grid .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gaming-cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-grid .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* CTA Section */
.testimonials-cta {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  color: white;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn-primary {
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  color: white;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

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

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .gaming-testimonials-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .featured-testimonial {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gaming-testimonials-section {
    padding: 4rem 1rem;
  }

  .gaming-testimonials-header .section-title {
    font-size: 2.5rem;
  }

  .gaming-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .featured-testimonial {
    grid-column: 1;
    grid-row: 1;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-author {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonial-meta {
    text-align: left;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials-stats {
    padding: 2rem;
  }

  .testimonials-cta {
    padding: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

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

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gaming-testimonials-header .section-title {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 1rem;
  }

  .avatar-image {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

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

/* Gaming Footer Styles */
.gaming-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  padding: 4rem 0 0;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.gaming-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

/* Brand Section */
.footer-brand {
  max-width: 400px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gaming-purple), var(--gaming-cyan));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

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

.footer-logo-text {
  flex: 1;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, white, var(--gaming-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--gaming-cyan);
  font-weight: 600;
  margin: 0;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.social-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Navigation Sections */
.footer-navigation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section {
  min-width: 0;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-link:hover {
  color: var(--gaming-cyan);
  transform: translateX(5px);
}

.footer-link::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  transition: width 0.3s ease;
}

.footer-link:hover::before {
  width: 10px;
}

/* Newsletter Section */
.footer-newsletter {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.1),
    rgba(16, 185, 129, 0.1)
  );
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

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

.newsletter-text {
  color: white;
}

.newsletter-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.newsletter-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
  max-width: 400px;
}

.newsletter-signup {
  width: 100%;
}

.input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  border-color: var(--gaming-cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.newsletter-button {
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.btn-icon {
  font-size: 1.1rem;
}

.newsletter-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

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

.footer-copyright {
  flex: 1;
}

.footer-copyright-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-tagline-bottom {
  font-size: 0.9rem;
  color: var(--gaming-cyan);
  font-weight: 600;
  margin: 0;
}

.footer-stats {
  display: flex;
  gap: 2rem;
}

.footer-stats .stat-item {
  text-align: center;
}

.footer-stats .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gaming-cyan);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.footer-stats .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .gaming-footer {
    padding: 3rem 0 0;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-navigation {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-newsletter {
    padding: 2rem;
  }

  .newsletter-title {
    font-size: 1.5rem;
  }

  .input-group {
    flex-direction: column;
  }

  .newsletter-button {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .footer-logo-section {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

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

  .footer-newsletter {
    padding: 1.5rem;
  }

  .newsletter-title {
    font-size: 1.3rem;
  }

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

/* Gaming Hero Section Styles */
.gaming-hero {
  background: linear-gradient(
    135deg,
    var(--gaming-blue) 0%,
    var(--gaming-purple) 50%,
    var(--gaming-cyan) 100%
  );
  padding: 6rem 2rem;
  margin-bottom: 4rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  /* min-height: 90vh; */
  display: flex;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gaming-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(6, 182, 212, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(124, 58, 237, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(16, 185, 129, 0.2) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Content */
.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-title-main {
  color: white;
  font-size: 0.6em;
  font-weight: 400;
  opacity: 0.9;
}

.hero-title-accent {
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1em;
  font-weight: 800;
}

.hero-title-sub {
  color: white;
  font-size: 0.6em;
  font-weight: 400;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 500px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gaming-cyan);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary {
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  color: white;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

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

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gaming-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 400px;
}

.game-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.game-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.2),
    rgba(16, 185, 129, 0.2)
  );
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.game-image {
  position: relative;
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, var(--gaming-purple), var(--gaming-cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.game-placeholder {
  font-size: 3rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.game-rating {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.game-info {
  text-align: center;
}

.game-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.game-genre {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
  top: 10%;
  left: 10%;
}

.floating-icon:nth-child(2) {
  top: 20%;
  right: 15%;
}

.floating-icon:nth-child(3) {
  bottom: 20%;
  left: 20%;
}

.floating-icon:nth-child(4) {
  bottom: 10%;
  right: 10%;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .gaming-showcase {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .gaming-hero {
    padding: 4rem 1rem;
    min-height: 80vh;
  }

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

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .gaming-showcase {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .game-card.featured {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

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

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* .gaming-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
} */

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--gaming-white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gaming-cyan);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.join-community-btn {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.join-community-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: var(--gaming-white);
}

.learn-more-btn {
  background: transparent;
  color: var(--gaming-white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--gaming-white);
}

.learn-more-btn:hover {
  background: var(--gaming-white);
  color: var(--gaming-blue);
  transform: translateY(-3px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gaming-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 300px;
}

.icon-item {
  font-size: 3rem;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.icon-item:nth-child(2) {
  animation-delay: 0.5s;
}

.icon-item:nth-child(3) {
  animation-delay: 1s;
}

.icon-item:nth-child(4) {
  animation-delay: 1.5s;
}

.icon-item:nth-child(5) {
  animation-delay: 2s;
}

.icon-item:nth-child(6) {
  animation-delay: 2.5s;
}

.icon-item:hover {
  transform: scale(1.1) translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .gaming-icons {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .gaming-hero {
    padding: 3rem 1.5rem;
    min-height: 70vh;
  }

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

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

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

  .join-community-btn,
  .learn-more-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .gaming-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 200px;
  }

  .icon-item {
    font-size: 2rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .gaming-hero {
    padding: 2rem 1rem;
    min-height: 60vh;
  }

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

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

  .hero-description {
    font-size: 1rem;
  }

  .gaming-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 150px;
  }

  .icon-item {
    font-size: 1.5rem;
    padding: 0.8rem;
  }
}

/* Features Section Styles */
.features-section {
  padding: 6rem 2rem;
  background: var(--gaming-white);
  margin: 2rem 0;
}

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

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.features-subtitle {
  font-size: 1.3rem;
  color: var(--gaming-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card {
  /* background: var(--gaming-white); */
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gaming-accent-gradient);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gaming-cyan);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gaming-blue);
  margin-bottom: 1rem;
}

.feature-description {
  /* color: var(--gaming-black); */
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-benefits li {
  color: var(--gaming-gray);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.feature-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gaming-green);
  font-weight: bold;
}

.features-cta {
  text-align: center;
  background: var(--gaming-gradient);
  padding: 3rem 2rem;
  border-radius: 20px;
  color: var(--gaming-white);
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--gaming-white);
}

/* Responsive Design for Features */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  .features-section {
    padding: 4rem 1.5rem;
  }

  .features-title {
    font-size: 2.2rem;
  }

  .features-subtitle {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 3rem 1rem;
  }

  .features-title {
    font-size: 1.8rem;
  }

  .features-subtitle {
    font-size: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

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

  .feature-title {
    font-size: 1.3rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Community Stats Section Styles */
.community-stats-section {
  background: var(--gaming-gradient);
  padding: 6rem 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.community-stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--gaming-white);
}

.stats-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.stat-item {
  text-align: center;
  color: var(--gaming-white);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gaming-cyan);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* Testimonials Section Styles */
.testimonials-section {
  background: var(--gaming-white);
  padding: 6rem 2rem;
  margin: 2rem 0;
}

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

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-subtitle {
  font-size: 1.3rem;
  color: var(--gaming-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  /* background: var(--gaming-white); */
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gaming-accent-gradient);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gaming-cyan);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gaming-black);
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--gaming-cyan);
  position: absolute;
  top: -1rem;
  left: -1rem;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-author {
  border-top: 2px solid var(--gaming-gray);
  padding-top: 1.5rem;
}

.author-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gaming-blue);
  margin-bottom: 0.5rem;
}

.author-role {
  font-size: 1rem;
  color: var(--gaming-gray);
  font-style: italic;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

  .stats-title,
  .testimonials-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .community-stats-section,
  .testimonials-section {
    padding: 4rem 1.5rem;
  }

  .stats-title,
  .testimonials-title {
    font-size: 2.2rem;
  }

  .stats-subtitle,
  .testimonials-subtitle {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

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

@media (max-width: 480px) {
  .community-stats-section,
  .testimonials-section {
    padding: 3rem 1rem;
  }

  .stats-title,
  .testimonials-title {
    font-size: 1.8rem;
  }

  .stats-subtitle,
  .testimonials-subtitle {
    font-size: 1rem;
  }

  .stat-item {
    padding: 1.2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

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

  .testimonial-text {
    font-size: 1rem;
  }

  .author-name {
    font-size: 1.1rem;
  }
}

/* Join Community CTA Section Styles */
.join-community-section {
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  padding: 6rem 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.join-community-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,6 18,14 10,18 2,14 2,6" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
  opacity: 0.3;
}

.join-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.join-content {
  text-align: center;
  color: var(--gaming-white);
}

.join-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.join-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.join-benefits {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
  font-size: 1.5rem;
}

.benefit-text {
  font-size: 1rem;
  font-weight: 600;
}

.join-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.join-cta-button {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.join-cta-button::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.5s;
}

.join-cta-button:hover::before {
  left: 100%;
}

.join-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--gaming-white);
}

.join-note {
  font-size: 0.95rem;
  opacity: 0.8;
  font-style: italic;
  margin: 0;
}

/* Responsive Design for Join Community Section */
@media (max-width: 1024px) {
  .join-title {
    font-size: 3rem;
  }

  .join-benefits {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .join-community-section {
    padding: 4rem 1.5rem;
  }

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

  .join-description {
    font-size: 1.1rem;
  }

  .join-benefits {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .benefit-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .join-cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .join-community-section {
    padding: 3rem 1rem;
  }

  .join-title {
    font-size: 2rem;
  }

  .join-description {
    font-size: 1rem;
  }

  .benefit-item {
    padding: 0.8rem 1.2rem;
    max-width: 280px;
  }

  .benefit-icon {
    font-size: 1.3rem;
  }

  .benefit-text {
    font-size: 0.9rem;
  }

  .join-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .join-note {
    font-size: 0.9rem;
  }
}

/* Updates and News Sections Styles */
.updates-section,
.news-section {
  padding: 6rem 2rem;
  margin: 2rem 0;
}

.updates-section {
  background: var(--gaming-white);
}

.news-section {
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  color: var(--gaming-white);
}

.updates-container,
.news-container {
  max-width: 1200px;
  margin: 0 auto;
}

.updates-header,
.news-header {
  text-align: center;
  margin-bottom: 4rem;
}

.updates-title,
.news-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.updates-title {
  color: var(--gaming-blue);
}

.news-title {
  color: var(--gaming-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.updates-subtitle,
.news-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.updates-subtitle {
  color: var(--gaming-gray);
}

.news-subtitle {
  color: var(--gaming-white);
  opacity: 0.9;
}

.updates-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.update-card,
.news-card {
  background: var(--gaming-white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.news-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.update-card:hover,
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.update-card:hover {
  border-color: var(--gaming-cyan);
}

.news-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.update-header,
.news-header-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 2rem 1rem;
}

.update-icon,
.news-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.update-meta,
.news-meta {
  flex: 1;
}

.update-title,
.news-title-card {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gaming-blue);
  line-height: 1.3;
}

.news-title-card {
  color: var(--gaming-white);
}

.update-date,
.news-date {
  font-size: 0.9rem;
  color: var(--gaming-gray);
  font-weight: 500;
}

.news-date {
  color: var(--gaming-white);
  opacity: 0.8;
}

.update-preview,
.news-preview {
  padding: 0 2rem 1rem;
}

.update-preview p,
.news-preview p {
  color: var(--gaming-black);
  line-height: 1.6;
  margin: 0;
}

.news-preview p {
  color: var(--gaming-white);
  opacity: 0.9;
}

.read-more-btn {
  width: 100%;
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.news-card .read-more-btn {
  background: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.read-more-btn:hover {
  background: var(--gaming-blue);
  transform: translateY(-2px);
}

.news-card .read-more-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.read-more-btn.active .btn-icon {
  transform: rotate(180deg);
}

.update-content,
.news-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.02);
}

.news-content {
  background: rgba(0, 0, 0, 0.1);
}

.update-content.active,
.news-content.active {
  max-height: 500px;
}

.update-content p,
.news-content p {
  padding: 1.5rem 2rem 0;
  color: var(--gaming-black);
  line-height: 1.6;
  margin: 0;
}

.news-content p {
  color: var(--gaming-white);
  opacity: 0.9;
}

.update-content ul,
.news-content ul {
  padding: 1rem 2rem 2rem;
  margin: 0;
  list-style: none;
}

.update-content li,
.news-content li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--gaming-black);
}

.news-content li {
  color: var(--gaming-white);
  opacity: 0.9;
}

.update-content li::before,
.news-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gaming-green);
  font-weight: bold;
}

/* Responsive Design for Updates and News */
@media (max-width: 1024px) {
  .updates-grid,
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .updates-title,
  .news-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .updates-section,
  .news-section {
    padding: 4rem 1.5rem;
  }

  .updates-title,
  .news-title {
    font-size: 2.2rem;
  }

  .updates-subtitle,
  .news-subtitle {
    font-size: 1.1rem;
  }

  .updates-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .update-header,
  .news-header-card {
    padding: 1.5rem 1.5rem 1rem;
  }

  .update-preview,
  .news-preview {
    padding: 0 1.5rem 1rem;
  }

  .update-content p,
  .news-content p {
    padding: 1.5rem 1.5rem 0;
  }

  .update-content ul,
  .news-content ul {
    padding: 1rem 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .updates-section,
  .news-section {
    padding: 3rem 1rem;
  }

  .updates-title,
  .news-title {
    font-size: 1.8rem;
  }

  .updates-subtitle,
  .news-subtitle {
    font-size: 1rem;
  }

  .update-header,
  .news-header-card {
    padding: 1.2rem 1.2rem 0.8rem;
  }

  .update-icon,
  .news-icon {
    font-size: 2rem;
  }

  .update-title,
  .news-title-card {
    font-size: 1.1rem;
  }

  .update-preview,
  .news-preview {
    padding: 0 1.2rem 0.8rem;
  }

  .read-more-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .update-content p,
  .news-content p {
    padding: 1.2rem 1.2rem 0;
    font-size: 0.95rem;
  }

  .update-content ul,
  .news-content ul {
    padding: 0.8rem 1.2rem 1.2rem;
  }
}

/* Contact Page Styles */
.contact-info-section {
  background: var(--gaming-white);
  padding: 6rem 2rem;
  margin: 2rem 0;
}

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

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-subtitle {
  font-size: 1.3rem;
  /* color: var(--gaming-gray); */
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-card {
  background: var(--gaming-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gaming-accent-gradient);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gaming-cyan);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gaming-blue);
  margin-bottom: 1rem;
}

.contact-card-description {
  font-size: 1rem;
  color: var(--gaming-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-link {
  color: var(--gaming-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  color: var(--gaming-cyan);
  transform: translateY(-2px);
}

.contact-address {
  color: var(--gaming-black);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

/* FAQ Section Styles */
.faq-section {
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  padding: 6rem 2rem;
  margin: 2rem 0;
  color: var(--gaming-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  color: var(--gaming-white);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-question.active {
  background: rgba(255, 255, 255, 0.2);
}

.question-text {
  flex: 1;
  margin-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  width: 30px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.1);
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 1.5rem 2rem 2rem;
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

/* Location Section Styles */
.location-section {
  background: var(--gaming-white);
  padding: 6rem 2rem;
  margin: 2rem 0;
}

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

.location-header {
  text-align: center;
  margin-bottom: 3rem;
}

.location-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.location-subtitle {
  font-size: 1.3rem;
  /* color: var(--gaming-gray); */
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--gaming-cyan);
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
  .contact-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .contact-title,
  .faq-title,
  .location-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-info-section,
  .faq-section,
  .location-section {
    padding: 4rem 1.5rem;
  }

  .contact-title,
  .faq-title,
  .location-title {
    font-size: 2.2rem;
  }

  .contact-subtitle,
  .faq-subtitle,
  .location-subtitle {
    font-size: 1.1rem;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 1.2rem 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-info-section,
  .faq-section,
  .location-section {
    padding: 3rem 1rem;
  }

  .contact-title,
  .faq-title,
  .location-title {
    font-size: 1.8rem;
  }

  .contact-subtitle,
  .faq-subtitle,
  .location-subtitle {
    font-size: 1rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

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

  .contact-card-title {
    font-size: 1.3rem;
  }

  .faq-question {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 1rem 1.2rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* Terms & Conditions Page Styles */
.terms-section {
  background: var(--gaming-white);
  padding: 6rem 2rem;
  margin: 2rem 0;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid var(--gaming-cyan);
}

.terms-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-subtitle {
  font-size: 1.3rem;
  color: var(--gaming-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.terms-last-updated {
  font-size: 1rem;
  color: var(--gaming-cyan);
  font-weight: 600;
  font-style: italic;
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.terms-section-item {
  background: var(--gaming-white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--gaming-cyan);
  transition: all 0.3s ease;
}

.terms-section-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.terms-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  position: relative;
}

.terms-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gaming-accent-gradient);
  border-radius: 2px;
}

.terms-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gaming-black);
  margin-bottom: 1.5rem;
}

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

.terms-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.terms-list li {
  padding: 0.8rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--gaming-black);
  line-height: 1.6;
  font-size: 1rem;
}

.terms-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gaming-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-info {
  background: rgba(59, 130, 246, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--gaming-cyan);
  margin-top: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: var(--gaming-black);
}

.contact-info strong {
  color: var(--gaming-blue);
  font-weight: 600;
}

/* Responsive Design for Terms Page */
@media (max-width: 1024px) {
  .terms-title {
    font-size: 3rem;
  }

  .terms-section-item {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .terms-section {
    padding: 4rem 1.5rem;
  }

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

  .terms-subtitle {
    font-size: 1.1rem;
  }

  .terms-section-item {
    padding: 1.5rem;
  }

  .terms-section-title {
    font-size: 1.5rem;
  }

  .terms-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .terms-section {
    padding: 3rem 1rem;
  }

  .terms-title {
    font-size: 2rem;
  }

  .terms-subtitle {
    font-size: 1rem;
  }

  .terms-section-item {
    padding: 1.2rem;
  }

  .terms-section-title {
    font-size: 1.3rem;
  }

  .terms-text {
    font-size: 0.95rem;
  }

  .terms-list li {
    font-size: 0.95rem;
    padding: 0.6rem 0;
  }

  .contact-info {
    padding: 1.2rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }
}

/* Gaming Community Section Styles */
.game-demo-section {
  padding: 4rem 2rem;
  background: var(--gaming-white);
  margin: 2rem 0;
}

.game-demo-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gaming-community-content {
  text-align: center;
  width: 100%;
}

.community-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.community-feature {
  background: var(--gaming-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.community-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
  border-color: var(--gaming-cyan);
}

.community-feature h3 {
  color: var(--gaming-purple);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.community-feature p {
  color: var(--gaming-black);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* Royal Game Updates Section */
.royal-game-updates {
  padding: 4rem 2rem;
  background: linear-gradient(var(--shadow-dark), var(--shadow-dark)),
    url("../assets/main-hero-image.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--gaming-white);
  margin: 2rem 0;
  border-radius: 20px;
}

.royal-game-updates .section-title {
  color: var(--gaming-white);
  text-shadow: 2px 2px 4px var(--gaming-shadow);
}

.royal-updates-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.royal-update-card {
  background: var(--overlay-light);
  color: var(--gaming-black);
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  border-left: 4px solid var(--gaming-cyan);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.royal-update-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--gaming-shadow);
}

.royal-update-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gaming-purple);
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px var(--shadow-light);
}

.royal-update-date {
  font-size: 0.9rem;
  color: var(--gaming-cyan);
  font-weight: 600;
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.royal-update-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gaming-black);
  margin: 0;
}

/* Princess Adventure Stories Section */
.royal-princess-chronicles {
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    var(--royal-purple-transparent),
    var(--princess-pink-transparent-2)
  );
  margin: 2rem 0;
  border-radius: 20px;
}

.royal-princess-chronicles .section-title {
  color: var(--gaming-white);
  text-shadow: 2px 2px 4px var(--gaming-shadow);
}

.royal-chronicles-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.royal-chronicle-card {
  background: var(--overlay-light);
  color: var(--gaming-black);
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  border-left: 4px solid var(--gaming-yellow);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.royal-chronicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--gaming-shadow);
}

.royal-chronicle-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gaming-purple);
  margin-bottom: 0.5rem;
}

.royal-chronicle-author {
  font-size: 0.9rem;
  color: var(--gaming-cyan);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.royal-chronicle-content {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gaming-black);
  margin-bottom: 0.8rem;
}

.royal-chronicle-date {
  font-size: 0.85rem;
  color: var(--gaming-purple);
  font-weight: 600;
  text-align: right;
}

/* Contact Page Section Margins */
.contact-info {
  margin-bottom: 4rem;
}

.contact-form-section {
  margin-bottom: 4rem;
}

.royal-location {
  margin-bottom: 2rem;
}

/* Contact Details Grid */
.contact-details {
  max-width: 1280px;
  margin: 0 auto;
  /* display: grid; */
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-detail-item {
  background: var(--gaming-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  border-left: 4px solid var(--gaming-cyan);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  flex-direction: column;
}

.contact-detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--gaming-shadow);
}

.contact-detail-item h3 {
  color: var(--gaming-purple);
  font-size: 1.3rem;

  font-weight: 700;
}

.contact-detail-item p,
.contact-detail-item a {
  color: var(--gaming-black);
  text-decoration: none;
  font-size: 1.1rem;
  margin: 0;
  transition: color 0.3s ease;
}

.contact-detail-item a:hover {
  color: var(--gaming-cyan);
}

/* Gaming News Page Styles */
.gaming-news-main {
  /* background: var(--gaming-white); */
  min-height: 100vh;
}

/* News Hero Section */
.news-hero-section {
  background: linear-gradient(
    135deg,
    var(--gaming-blue) 0%,
    var(--gaming-purple) 50%,
    var(--gaming-cyan) 100%
  );
  padding: 6rem 2rem;
  margin-bottom: 4rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.news-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.news-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.news-hero-content {
  color: white;
}

.news-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.news-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.news-hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 500px;
}

.news-hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.news-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gaming-cyan);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.news-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gaming-icons-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 300px;
}

.gaming-icon-item {
  font-size: 3rem;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.gaming-icon-item:nth-child(2) {
  animation-delay: 0.5s;
}

.gaming-icon-item:nth-child(3) {
  animation-delay: 1s;
}

.gaming-icon-item:nth-child(4) {
  animation-delay: 1.5s;
}

.gaming-icon-item:hover {
  transform: scale(1.1) translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

/* Game Reviews Section */
.game-reviews-section {
  padding: 4rem 2rem;
  background: var(--gaming-white);
}

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

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.reviews-subtitle {
  font-size: 1.3rem;
  color: var(--gaming-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.reviews-stream {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.game-review-article {
  background: var(--gaming-white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.game-review-article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
}

.game-review-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gaming-cyan);
}

.review-header {
  padding: 2.5rem 2.5rem 1rem;
}

.review-game-info {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.game-cover {
  position: relative;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gaming-purple), var(--gaming-cyan));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.game-image-placeholder {
  font-size: 3rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.game-rating-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(45deg, var(--gaming-emerald), var(--gaming-cyan));
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.game-details {
  flex: 1;
}

.game-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gaming-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.game-genre,
.game-platform,
.review-date {
  font-size: 0.9rem;
  color: var(--gaming-gray);
  font-weight: 500;
}

.game-genre {
  color: var(--gaming-cyan);
  font-weight: 600;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gaming-purple), var(--gaming-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gaming-blue);
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.85rem;
  color: var(--gaming-gray);
}

.review-content {
  padding: 0 2.5rem 2.5rem;
}

.review-summary {
  margin-bottom: 2rem;
}

.review-summary p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gaming-black);
  margin: 0;
}

.expand-review-btn {
  width: 100%;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.expand-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.review-full-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.02);
}

.review-full-content.active {
  max-height: 2000px;
}

.review-sections {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.review-section {
  padding: 0 1rem;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gaming-blue);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  border-radius: 2px;
}

.review-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gaming-black);
  margin: 0;
}

.review-score-breakdown {
  background: rgba(6, 182, 212, 0.05);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 2rem;
  border: 1px solid rgba(6, 182, 212, 0.1);
}

.score-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.score-item:last-child {
  margin-bottom: 0;
}

.score-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gaming-blue);
  min-width: 80px;
}

.score-bar {
  flex: 1;
  height: 8px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  border-radius: 4px;
  transition: width 0.3s ease;
}

.score-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gaming-cyan);
  min-width: 30px;
  text-align: right;
}

/* Gaming News Section */
.gaming-news-section {
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  padding: 4rem 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.gaming-news-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.news-header {
  text-align: center;
  margin-bottom: 4rem;
}

.news-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.news-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.news-stream {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news-article {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.news-article:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.news-category {
  background: rgba(6, 182, 212, 0.2);
  color: var(--gaming-cyan);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.news-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.news-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.expand-news-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.news-full-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.1);
}

.news-full-content.active {
  max-height: 500px;
}

.news-full-content p {
  padding: 1.5rem 0 0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .news-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .news-hero-title {
    font-size: 3rem;
  }

  .gaming-icons-showcase {
    max-width: 250px;
  }

  .review-game-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .game-cover {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .news-hero-section {
    padding: 4rem 1rem;
  }

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

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

  .gaming-icons-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 200px;
  }

  .gaming-icon-item {
    font-size: 2rem;
    padding: 1rem;
  }

  .reviews-title,
  .news-title {
    font-size: 2.2rem;
  }

  .reviews-subtitle,
  .news-subtitle {
    font-size: 1.1rem;
  }

  .review-header {
    padding: 2rem 1.5rem 1rem;
  }

  .review-content {
    padding: 0 1.5rem 2rem;
  }

  .game-title {
    font-size: 1.5rem;
  }

  .game-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .news-article {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .news-hero-title {
    font-size: 2rem;
  }

  .news-hero-description {
    font-size: 1rem;
  }

  .gaming-icons-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 150px;
  }

  .gaming-icon-item {
    font-size: 1.5rem;
    padding: 0.8rem;
  }

  .reviews-title,
  .news-title {
    font-size: 1.8rem;
  }

  .reviews-subtitle,
  .news-subtitle {
    font-size: 1rem;
  }

  .review-header {
    padding: 1.5rem 1rem 0.5rem;
  }

  .review-content {
    padding: 0 1rem 1.5rem;
  }

  .game-cover {
    width: 80px;
    height: 80px;
  }

  .game-image-placeholder {
    font-size: 2rem;
  }

  .game-title {
    font-size: 1.3rem;
  }

  .news-article {
    padding: 1.5rem;
  }
}

/* Community CTA Section */
.community-cta-section {
  background: linear-gradient(
    135deg,
    var(--gaming-blue) 0%,
    var(--gaming-purple) 50%,
    var(--gaming-cyan) 100%
  );
  padding: 6rem 2rem;
  margin: 4rem 0;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.community-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-content {
  color: white;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 500px;
}

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

.cta-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.cta-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.cta-btn-primary {
  background: linear-gradient(45deg, var(--gaming-cyan), var(--gaming-emerald));
  color: white;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.cta-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  min-width: 120px;
}

.cta-stats .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gaming-cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cta-stats .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.cta-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 300px;
}

.community-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.community-card:nth-child(2) {
  animation-delay: 0.5s;
}

.community-card:nth-child(3) {
  animation-delay: 1s;
}

.community-card:hover {
  transform: scale(1.05) translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.card-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gaming-purple), var(--gaming-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.card-content {
  flex: 1;
}

.card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.card-role {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.card-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-stat {
  font-size: 0.8rem;
  color: var(--gaming-cyan);
  font-weight: 600;
  background: rgba(6, 182, 212, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float 4s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.floating-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}

.floating-icon:nth-child(4) {
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}

/* Responsive Design for Community CTA */
@media (max-width: 1024px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .community-showcase {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .community-cta-section {
    padding: 4rem 1rem;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }

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

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cta-stats {
    justify-content: center;
  }

  .cta-stats .stat-item {
    min-width: 100px;
    padding: 1rem 0.5rem;
  }

  .community-showcase {
    max-width: 200px;
  }

  .community-card {
    padding: 1rem;
  }

  .card-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-features {
    gap: 1rem;
  }

  .cta-feature {
    padding: 1rem;
  }

  .feature-icon {
    font-size: 1.5rem;
  }

  .cta-stats {
    gap: 1rem;
  }

  .cta-stats .stat-item {
    min-width: 80px;
    padding: 0.8rem 0.5rem;
  }

  .cta-stats .stat-number {
    font-size: 1.5rem;
  }

  .community-showcase {
    max-width: 150px;
  }

  .community-card {
    flex-direction: column;
    text-align: center;
    padding: 0.8rem;
  }

  .card-avatar {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .card-stats {
    justify-content: center;
  }
}

/* Gaming Contact Page Styles */
.gaming-contact-main {
  /* background: var(--gaming-white); */
  min-height: 100vh;
}

/* About Hero Section */
.about-hero-section {
  background: linear-gradient(
    135deg,
    var(--gaming-blue) 0%,
    var(--gaming-purple) 50%,
    var(--gaming-cyan) 100%
  );
  padding: 6rem 2rem;
  margin-bottom: 4rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.about-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero-content {
  color: white;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.about-hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 500px;
}

.about-hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-stat .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gaming-cyan);
  line-height: 1;
}

.about-stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.about-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-visual .gaming-icons-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 300px;
}

.about-hero-visual .gaming-icon-item {
  font-size: 3rem;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.about-hero-visual .gaming-icon-item:nth-child(2) {
  animation-delay: 0.5s;
}

.about-hero-visual .gaming-icon-item:nth-child(3) {
  animation-delay: 1s;
}

.about-hero-visual .gaming-icon-item:nth-child(4) {
  animation-delay: 1.5s;
}

.about-hero-visual .gaming-icon-item:hover {
  transform: scale(1.1) translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

/* Mission Section */
.mission-section {
  padding: 4rem 2rem;
  background: var(--gaming-white);
}

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

.mission-content {
  text-align: center;
}

.mission-header {
  margin-bottom: 4rem;
}

.mission-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.mission-subtitle {
  font-size: 1.3rem;
  color: #333333;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

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

.mission-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--gaming-white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.mission-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gaming-cyan);
}

.mission-feature .feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gaming-purple), var(--gaming-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-feature .feature-content {
  flex: 1;
  text-align: left;
}

.mission-feature .feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gaming-blue);
  margin-bottom: 0.75rem;
}

.mission-feature .feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  margin: 0;
  font-weight: 500;
}

/* Contact Info Section */
.contact-info-section {
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  padding: 4rem 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
  font-size: 1.3rem;
  color: white;
  opacity: 1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

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

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.contact-card .contact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.contact-card-description {
  font-size: 1rem;
  color: white;
  opacity: 1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}

.contact-link {
  color: var(--gaming-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--gaming-emerald);
}

.contact-address {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 2rem;
  background: var(--gaming-white);
}

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

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-subtitle {
  font-size: 1.3rem;
  color: var(--gaming-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--gaming-white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--gaming-cyan);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(6, 182, 212, 0.05);
}

.faq-question.active {
  background: rgba(6, 182, 212, 0.1);
}

.question-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gaming-blue);
  margin: 0;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gaming-cyan);
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(6, 182, 212, 0.02);
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gaming-black);
  margin: 0;
}

/* Location Section */
.location-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--gaming-purple), var(--gaming-cyan));
  color: white;
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.location-header {
  text-align: center;
  margin-bottom: 3rem;
}

.location-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.location-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-hero-title {
    font-size: 3rem;
  }

  .about-hero-visual .gaming-icons-showcase {
    max-width: 250px;
  }

  .mission-features {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .about-hero-section {
    padding: 4rem 1rem;
  }

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

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

  .about-hero-visual .gaming-icons-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 200px;
  }

  .about-hero-visual .gaming-icon-item {
    font-size: 2rem;
    padding: 1rem;
  }

  .mission-title,
  .contact-title,
  .faq-title,
  .location-title {
    font-size: 2.2rem;
  }

  .mission-subtitle,
  .contact-subtitle,
  .faq-subtitle,
  .location-subtitle {
    font-size: 1.1rem;
  }

  .mission-feature {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-description {
    font-size: 1rem;
  }

  .about-hero-visual .gaming-icons-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 150px;
  }

  .about-hero-visual .gaming-icon-item {
    font-size: 1.5rem;
    padding: 0.8rem;
  }

  .mission-title,
  .contact-title,
  .faq-title,
  .location-title {
    font-size: 1.8rem;
  }

  .mission-subtitle,
  .contact-subtitle,
  .faq-subtitle,
  .location-subtitle {
    font-size: 1rem;
  }

  .mission-feature {
    padding: 1rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .question-text {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 1rem 1rem;
  }
}

/* Cookie Banner Styles */
.cookie-banner-main {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gaming-gradient);
  color: var(--gaming-white);
  box-shadow: 0 -4px 20px var(--gaming-shadow);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-banner-main.show {
  transform: translateY(0);
}

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

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gaming-white);
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-accept-button {
  background: var(--gaming-yellow);
  color: var(--gaming-black);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--gaming-shadow);
}

.cookie-accept-button:hover {
  background: var(--hover-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.cookie-accept-button:active {
  transform: translateY(0);
}

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

  .cookie-banner-text p {
    font-size: 0.9rem;
  }

  .cookie-accept-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .cookie-banner-content {
    padding: 0.8rem;
  }

  .cookie-banner-text p {
    font-size: 0.85rem;
  }

  .cookie-accept-button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* Gaming Policy Pages Styles */
.gaming-policy-main {
  background: var(--gaming-white);
  min-height: 100vh;
}

/* Policy Hero Section */
.policy-hero-section {
  background: linear-gradient(
    135deg,
    var(--gaming-blue) 0%,
    var(--gaming-purple) 50%,
    var(--gaming-cyan) 100%
  );
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.policy-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gaming-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23gaming-pattern)"/></svg>');
  opacity: 0.3;
}

.policy-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.policy-hero-content {
  color: white;
}

.policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.policy-hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.policy-hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.policy-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gaming-emerald);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.policy-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-icons-showcase,
.legal-icons-showcase,
.cookie-icons-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 200px;
}

.security-icon-item,
.legal-icon-item,
.cookie-icon-item {
  font-size: 3rem;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
}

.security-icon-item:nth-child(2),
.legal-icon-item:nth-child(2),
.cookie-icon-item:nth-child(2) {
  animation-delay: 0.5s;
}

.security-icon-item:nth-child(3),
.legal-icon-item:nth-child(3),
.cookie-icon-item:nth-child(3) {
  animation-delay: 1s;
}

.security-icon-item:nth-child(4),
.legal-icon-item:nth-child(4),
.cookie-icon-item:nth-child(4) {
  animation-delay: 1.5s;
}

/* Policy Content Sections */
.privacy-policy-content,
.terms-policy-content,
.cookie-policy-content {
  padding: 4rem 2rem;
  background: var(--gaming-white);
}

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

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.policy-section {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.policy-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gaming-gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Information Collection Grid */
.info-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.collection-card {
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
}

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

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.card-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Usage Features */
.usage-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.usage-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--gaming-emerald),
    var(--gaming-cyan)
  );
  color: white;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.usage-feature:hover {
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Security Measures */
.security-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.security-measure {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--gaming-purple), var(--gaming-blue));
  color: white;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.security-measure:hover {
  transform: translateY(-5px);
}

.measure-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.measure-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.measure-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.right-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--gaming-cyan),
    var(--gaming-emerald)
  );
  color: white;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.right-item:hover {
  transform: translateY(-5px);
}

.right-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.right-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.right-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Children Privacy */
.children-privacy {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.note-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.note-content {
  flex: 1;
}

.note-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.note-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Service Features */
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  color: white;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.service-feature:hover {
  transform: translateY(-3px);
}

/* Account Requirements */
.account-requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--gaming-emerald),
    var(--gaming-cyan)
  );
  color: white;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.requirement-item:hover {
  transform: translateY(-3px);
}

.requirement-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.requirement-content {
  flex: 1;
}

.requirement-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.requirement-description {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Community Guidelines */
.community-guidelines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.guideline-category {
  padding: 2rem;
  border-radius: 15px;
}

.guideline-category:first-child {
  background: linear-gradient(
    135deg,
    var(--gaming-emerald),
    var(--gaming-cyan)
  );
  color: white;
}

.guideline-category:last-child {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.guideline-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guideline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.guideline-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.guideline-text {
  font-size: 1rem;
  font-weight: 500;
}

/* Content Policy */
.content-policy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.content-rule {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--gaming-purple), var(--gaming-blue));
  color: white;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.content-rule:hover {
  transform: translateY(-3px);
}

.rule-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.rule-content {
  flex: 1;
}

.rule-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rule-description {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Prohibited Activities */
.prohibited-activities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.activity-item:hover {
  transform: translateY(-3px);
}

.activity-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.activity-content {
  flex: 1;
}

.activity-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.activity-description {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Terms Content Box */
.terms-content-box {
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.terms-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Cookie Usage Grid */
.cookie-usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.usage-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.usage-card:hover {
  transform: translateY(-5px);
}

.usage-card.essential {
  border-top: 4px solid var(--gaming-emerald);
}

.usage-card.performance {
  border-top: 4px solid var(--gaming-blue);
}

.usage-card.functionality {
  border-top: 4px solid var(--gaming-purple);
}

.usage-card.analytics {
  border-top: 4px solid var(--gaming-cyan);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--gaming-gray-light), #f8f9fa);
}

.card-header .card-icon {
  font-size: 2rem;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gaming-blue);
}

.card-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.card-badge.required {
  background: var(--gaming-emerald);
  color: white;
}

.card-badge.optional {
  background: var(--gaming-gray);
  color: white;
}

.card-content {
  padding: 1.5rem;
}

.card-description {
  font-size: 1rem;
  line-height: 1.6;
  /* color: var(--gaming-gray); */
  margin-bottom: 1rem;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  background: var(--gaming-gray-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gaming-blue);
}

/* Cookie Duration Grid */
.cookie-duration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.duration-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  color: white;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.duration-card:hover {
  transform: translateY(-5px);
}

.duration-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.duration-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.duration-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.duration-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Cookie Management */
.cookie-management {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.management-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--gaming-emerald),
    var(--gaming-cyan)
  );
  color: white;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.management-method:hover {
  transform: translateY(-3px);
}

.method-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.method-content {
  flex: 1;
}

.method-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.method-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Cookie Explanation */
.cookie-explanation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.explanation-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--gaming-purple), var(--gaming-blue));
  color: white;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.explanation-card:hover {
  transform: translateY(-5px);
}

.explanation-card .card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.explanation-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.explanation-card .card-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  color: white;
  border-radius: 15px;
  transition: transform 0.3s ease;
  max-width: 100%;
}

.contact-method:hover {
  transform: translateY(-3px);
}

.contact-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.contact-link {
  color: var(--gaming-emerald);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--gaming-cyan);
}

.contact-address {
  color: var(--gaming-emerald);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Policy Footer */
.policy-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--gaming-gray-light), #f8f9fa);
  border-radius: 15px;
  margin-top: 2rem;
}

.last-updated,
.policy-version {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.update-label,
.version-label {
  font-weight: 600;
  color: var(--gaming-gray);
}

.update-date,
.version-number {
  font-weight: 700;
  color: var(--gaming-blue);
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
  .policy-hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .policy-hero-description {
    font-size: 1.1rem;
  }

  .policy-hero-stats {
    justify-content: center;
  }

  .security-icons-showcase,
  .legal-icons-showcase,
  .cookie-icons-showcase {
    max-width: 150px;
  }

  .policy-section {
    padding: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .info-collection-grid,
  .usage-features,
  .security-measures,
  .rights-grid,
  .service-features,
  .account-requirements,
  .content-policy,
  .prohibited-activities,
  .cookie-usage-grid,
  .cookie-duration-grid,
  .cookie-management,
  .cookie-explanation,
  .contact-info {
    grid-template-columns: 1fr;
  }

  .community-guidelines {
    grid-template-columns: 1fr;
  }

  .policy-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .policy-hero-section {
    padding: 4rem 1rem 3rem;
  }

  .policy-hero-title {
    font-size: 2rem;
  }

  .policy-hero-description {
    font-size: 1rem;
  }

  .policy-section {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}
