
  :root {
    --primary: #6a1b9a;
    --secondary: #9c27b0;
    --accent: #ff9800;
    --dark: #1a1a2e;
    --light: #f5f5f5;
    --text-dark: #333;
    --text-light: #f5f5f5;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }

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

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

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
  }

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

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
  }

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

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

  img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }

  a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
  }

  a:hover {
    color: var(--secondary);
  }

  .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.5rem;
  }

  .btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
  }

  .btn-primary:hover {
    background-color: var(--secondary);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }

  .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  /* Section Styles */
  section {
    padding: 4rem 0;
    position: relative;
  }

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

  /* Hero Section */
  .hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    background-color: var(--dark);
    overflow: hidden;
  }

  .hero-section .bg-image {
    opacity: 0.6;
  }

  .hero-section .content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent);
  }

  .hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero-section .subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
  }

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

  .overview-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .overview-text {
    flex: 1;
  }

  .overview-image {
    flex: 1;
    text-align: center;
  }

  .overview-image img {
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }

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

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

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

  .gameplay-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-bottom: 4px solid var(--accent);
  }

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

  .gameplay-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
  }

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

  /* Story Section */
  .story-section {
    position: relative;
    color: var(--text-light);
    background-color: var(--dark);
    padding: 5rem 0;
  }

  .story-content {
    position: relative;
    z-index: 1;
    background-color: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: var(--border-radius);
  }

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

  .quote {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--accent);
    border-radius: var(--border-radius);
  }

  blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  cite {
    font-style: normal;
    font-weight: bold;
    color: var(--accent);
  }

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

  .section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
  }

  .dlc-timeline {
    position: relative;
  }

  .dlc-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background-color: var(--primary);
  }

  .dlc-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 60px;
  }

  .dlc-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
  }

  .dlc-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
  }

  .dlc-content img {
    margin-top: 1rem;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }

  /* Graphics Section */
  .graphics-section {
    background-color: var(--dark);
    color: var(--text-light);
  }

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

  .graphics-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .graphics-text {
    flex: 1;
  }

  .graphics-showcase {
    flex: 1;
  }

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

  .rating {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }

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

  .score {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary);
  }

  .max {
    font-size: 2rem;
    color: var(--text-dark);
  }

  .rating-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .rating-aspect {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .aspect-name {
    width: 100px;
    font-weight: bold;
  }

  .aspect-bar {
    flex: 1;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
  }

  .aspect-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 5px;
  }

  .aspect-score {
    width: 60px;
    text-align: right;
    font-weight: bold;
  }

  .pros-cons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .pros, .cons {
    flex: 1;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }

  .pros h3 {
    color: #2e7d32;
  }

  .cons h3 {
    color: #c62828;
  }

  ul {
    padding-left: 1.5rem;
  }

  li {
    margin-bottom: 0.5rem;
  }

  .final-thoughts {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
  }

  /* CTA Section */
  .cta-section {
    background-color: var(--primary);
    color: var(--text-light);
    text-align: center;
    padding: 5rem 0;
  }

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

  .cta-section h2::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
  }

  .cta-buttons {
    margin-top: 2rem;
  }

  .cta-section .btn-primary {
    background-color: var(--accent);
    color: var(--dark);
  }

  .cta-section .btn-primary:hover {
    background-color: #ffb74d;
  }

  .cta-section .btn-secondary {
    border-color: var(--text-light);
    color: var(--text-light);
  }

  .cta-section .btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary);
  }

  /* Responsive Design */
  @media (min-width: 768px) {
    h1 {
      font-size: 3rem;
    }

    h2 {
      font-size: 2.5rem;
    }

    .overview-content {
      flex-direction: row;
    }

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

    .graphics-content {
      flex-direction: row;
    }

    .pros-cons {
      flex-direction: row;
    }

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

    .rating-score {
      width: 30%;
    }

    .rating-details {
      width: 70%;
    }

    .dlc-timeline::before {
      left: 50%;
      transform: translateX(-50%);
    }

    .dlc-item {
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .dlc-item:nth-child(odd) .dlc-content {
      margin-right: 50%;
      margin-left: 60px;
    }

    .dlc-item:nth-child(even) .dlc-content {
      margin-left: 50%;
      margin-right: 60px;
      border-left: none;
      border-right: 4px solid var(--primary);
    }

    .dlc-item:nth-child(odd) .dlc-year {
      right: calc(50% + 20px);
      left: auto;
    }

    .dlc-item:nth-child(even) .dlc-year {
      left: calc(50% + 20px);
      right: auto;
    }
  }

  @media (min-width: 1024px) {
    h1 {
      font-size: 4rem;
    }

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

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