
  :root {
    --primary: #a83232;
    --secondary: #2a2a2a;
    --accent: #e9b44c;
    --light: #f5f5f5;
    --dark: #1a1a1a;
    --text: #333;
    --text-light: #f5f5f5;
    --bg-dark: #121212;
    --bg-light: #f9f9f9;
    --border: #ddd;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-strong: 0 10px 25px rgba(0,0,0,0.2);
  }

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

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

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

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary);
  }

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

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

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

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

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

  a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
  }

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

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

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

  section {
    padding: 5rem 0;
    position: relative;
  }

  .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary);
    color: var(--light);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
  }

  .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
  }

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

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
  }

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

  .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light);
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }

  .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
  }

  .stars {
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 1rem;
  }

  .score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    background-color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }

  /* Game Intro Section */
  .game-intro {
    background-color: var(--bg-light);
  }

  .intro-content {
    flex: 1;
    padding-right: 2rem;
  }

  .key-info {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    background-color: var(--secondary);
    padding: 1.5rem;
    border-radius: 8px;
    color: var(--light);
  }

  .info-item {
    display: flex;
    align-items: center;
    margin-right: 2rem;
    margin-bottom: 1rem;
  }

  .info-item i {
    margin-right: 0.75rem;
    color: var(--accent);
    font-size: 1.25rem;
  }

  .intro-image {
    flex: 1;
    margin-top: 2rem;
  }

  .intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
  }

  /* Gameplay Section */
  .gameplay-section {
    background-color: var(--bg-dark);
    color: var(--light);
    z-index: 1111;
  }

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

  .gameplay-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .gameplay-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .gameplay-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    background-color: rgba(255, 255, 255, 0.1);
  }

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

  .gameplay-card h3 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

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

  .story-content {
    max-width: 800px;
    margin: 0 auto;
  }

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

  .story-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  blockquote {
    margin: 2rem 0;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--accent);
    font-style: italic;
  }

  blockquote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--accent);
  }

  /* Visuals & Audio Section */
  .visuals-audio-section {
    background-color: var(--bg-light);
  }

  .visuals-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .visuals-content h3 {
    margin-top: 2rem;
  }

  .visuals-image {
    margin-top: 2rem;
  }

  .visuals-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  /* Legacy Section */
  .legacy-section {
    background-color: var(--bg-dark);
    color: var(--light);
  }

  .legacy-section h2 {
    color: var(--light);
    text-align: center;
  }

  .legacy-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .legacy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
  }

  .legacy-columns {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .legacy-column h3 {
    color: var(--light);
    margin-bottom: 1.5rem;
  }

  .feature-list {
    list-style: none;
    margin-bottom: 2rem;
  }

  .feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
  }

  .feature-list li i {
    color: var(--accent);
    margin-right: 1rem;
    margin-top: 0.25rem;
  }

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

  .conclusion-section h2 {
    text-align: center;
  }

  .conclusion-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .pros, .cons {
    flex: 1;
    padding: 2rem;
    border-radius: 8px;
  }

  .pros {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
  }

  .cons {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
  }

  .pros h3, .cons h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .pros h3::after, .cons h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
  }

  .pros h3::after {
    background-color: #28a745;
  }

  .cons h3::after {
    background-color: #dc3545;
  }

  .pros ul, .cons ul {
    list-style: none;
  }

  .pros li, .cons li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
  }

  .pros i, .cons i {
    margin-right: 1rem;
    margin-top: 0.25rem;
  }

  .pros i {
    color: #28a745;
  }

  .cons i {
    color: #dc3545;
  }

  .final-verdict {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
  }

  .final-score {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--secondary);
    color: var(--light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
  }

  .score-box {
    margin-bottom: 2rem;
  }

  .score-value {
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
  }

  .score-max {
    font-size: 2rem;
    color: var(--light);
  }

  .score-breakdown {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
  }

  .score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .score-category {
    font-weight: 600;
  }

  .score-points {
    color: var(--accent);
    font-weight: 600;
  }

  /* Related Games Section */
  .related-games {
    background-color: var(--bg-dark);
    color: var(--light);
    padding-bottom: 6rem;
  }

  .related-games h2 {
    color: var(--light);
    text-align: center;
  }

  .related-games h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .related-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    box-shadow: none;
  }

  .related-card h3 {
    color: var(--light);
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
  }

  .card-rating {
    padding: 0 1.5rem 1rem;
    color: var(--accent);
    display: flex;
    align-items: center;
  }

  .card-rating span {
    margin-left: 0.5rem;
    color: var(--light);
    font-weight: 600;
  }

  .related-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
  }

  .related-card .btn-secondary {
    margin: 0 1.5rem 1.5rem;
  }

  /* Media Queries */
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }

    .container {
      width: 85%;
    }

    .game-intro .container {
      display: flex;
      align-items: flex-start;
      gap: 4rem;
    }

    .intro-content {
      flex: 2;
    }

    .intro-image {
      flex: 1;
      margin-top: 0;
    }

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

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

    .visuals-content {
      flex: 3;
      padding-right: 3rem;
    }

    .visuals-image {
      flex: 2;
      margin-top: 0;
    }

    .legacy-columns {
      flex-direction: row;
    }

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

    .related-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

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

    .container {
      width: 80%;
    }

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