
  :root {
    --primary: #3a1c71;
    --secondary: #d76d77;
    --accent: #ffaf7b;
    --dark: #1a0b33;
    --light: #f5f5f7;
    --text: #333;
    --text-light: #f5f5f7;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  section {
    padding: 80px 0;
    position: relative;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    color: var(--primary);
  }

  h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }

  h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }

  h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 20px auto 0;
    border-radius: 2px;
  }

  h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }

  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
  }

  /* Hero Section */
  .hero-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: var(--dark);
    color: var(--light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .hero-section h1, 
  .hero-section .hero-subtitle {
    color: var(--light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  /* Game History Section */
  .game-history {
    background-color: var(--light);
  }

  .history-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .history-text {
    flex: 1;
  }

  /* Game Editions Section */
  .game-editions {
    background-color: #f0f0f5;
  }

  .editions-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .edition-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .edition-card:hover {
    transform: translateY(-10px);
  }

  .edition-card img {
    margin-bottom: 20px;
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .rating {
    color: #ffc107;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }

  .rating-value {
    margin-left: 10px;
    color: var(--text);
    font-weight: bold;
  }

  .edition-features {
    margin-top: 20px;
  }

  .edition-features span {
    display: block;
    margin-bottom: 10px;
  }

  .edition-features i {
    color: var(--secondary);
    margin-right: 10px;
  }

  /* Gameplay Section */
  .gameplay-section {
    background-color: var(--dark);
    color: var(--light);
    position: relative;
  }

  .gameplay-section h2 {
    color: var(--light);
  }

  .gameplay-features {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-10px);
  }

  .feature-card i {
    color: var(--accent);
    margin-bottom: 20px;
  }

  .feature-card h3 {
    color: var(--light);
  }

  /* Community Section */
  .community-section {
    background-color: var(--light);
  }

  .community-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .community-text {
    flex: 1;
  }

  .community-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }

  .stat-item {
    flex: 1;
    min-width: 150px;
    background: var(--gradient);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
  }

  .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .stat-desc {
    font-size: 0.9rem;
  }

  /* CTA Section */
  .cta-section {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 100px 0;
  }

  .cta-section h2 {
    color: white;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 40px auto 0;
  }

  .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .btn-primary {
    background-color: white;
    color: var(--primary);
  }

  .btn-primary:hover {
    background-color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
  }

  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  /* Utility Classes */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  /* Media Queries */
  @media (min-width: 768px) {
    .history-content {
      flex-direction: row;
      align-items: center;
    }

    .community-content {
      flex-direction: row;
      align-items: center;
    }

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

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

    .cta-buttons {
      flex-direction: row;
      justify-content: center;
    }
  }

  @media (min-width: 1024px) {
    .editions-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .gameplay-features {
      grid-template-columns: repeat(4, 1fr);
    }
  }
