
  :root {
    --primary: #8b3a2f;
    --secondary: #3a5e8b;
    --accent: #c69c6d;
    --background: #1a1a1a;
    --text: #f0f0f0;
    --dark-text: #1a1a1a;
    --light-bg: #2a2a2a;
    --lighter-bg: #3a3a3a;
    --border: #444444;
  }

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

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

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

  h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    margin-bottom: 1.5rem;
    color: var(--accent);
  }

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

  h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

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

  h3 {
    font-size: 1.6rem;
    color: var(--accent);
  }

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

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

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

  /* Hero Section */
  .hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

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

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

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

  .rating {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-top: 1rem;
  }

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

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

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

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

  .text-content {
    flex: 1;
  }

  .image-container {
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
  }

  .image-container img:hover {
    transform: scale(1.03);
  }

  /* Gameplay Section */
  .gameplay-section {
    background-color: var(--background);
    padding: 4rem 0;
  }

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

  .gameplay-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
  }

  .gameplay-card:hover {
    transform: translateY(-5px);
  }

  .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
  }

  .quote-box {
    background-color: var(--lighter-bg);
    padding: 2rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary);
    margin-top: 3rem;
  }

  blockquote {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text);
    text-align: center;
  }

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

  .story-section .container {
    position: relative;
    z-index: 1;
  }

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

  .feature {
    background-color: rgba(42, 42, 42, 0.8);
    padding: 1.5rem;
    border-radius: 5px;
    border-top: 3px solid var(--primary);
  }

  /* Visuals Section */
  .visuals-section {
    background-color: var(--light-bg);
    padding: 4rem 0;
  }

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

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

  .image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  .soundtrack-highlight {
    display: flex;
    align-items: center;
    background-color: var(--lighter-bg);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1.5rem;
  }

  .soundtrack-highlight i {
    font-size: 2rem;
    color: var(--accent);
    margin-right: 1rem;
  }

  .soundtrack-highlight p {
    margin: 0;
  }

  /* Legacy Section */
  .legacy-section {
    background-color: var(--background);
    padding: 4rem 0;
  }

  .comparison-table {
    margin: 3rem 0;
  }

  .table-container {
    overflow-x: auto;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
  }

  th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
  }

  th {
    background-color: var(--primary);
    color: var(--text);
  }

  tr:nth-child(even) {
    background-color: var(--lighter-bg);
  }

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

  .mod {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  }

  .mod i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
  }

  .mod h4 {
    margin-bottom: 0.5rem;
  }

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

  .final-verdict {
    background-color: var(--lighter-bg);
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary);
  }

  .verdict-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .rating-large {
    font-size: 1.8rem;
  }

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

  .pros, .cons {
    background-color: var(--lighter-bg);
    padding: 1.5rem;
    border-radius: 5px;
  }

  .pros h3 {
    color: #4caf50;
  }

  .cons h3 {
    color: #f44336;
  }

  ul {
    list-style: none;
  }

  li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
  }

  li i {
    margin-right: 0.8rem;
  }

  .fa-plus-circle {
    color: #4caf50;
  }

  .fa-minus-circle {
    color: #f44336;
  }

  .final-thoughts {
    background-color: var(--lighter-bg);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
  }

  .btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
  }

  .btn:hover {
    background-color: var(--secondary);
    color: var(--text);
  }

  /* Media Queries */
  @media (min-width: 768px) {
    .intro-content {
      flex-direction: row;
    }
    
    .gameplay-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .story-features {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .image-gallery {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .mod-highlights {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .pros-cons {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .gameplay-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .visuals-content {
      flex-direction: row;
    }
    
    .image-gallery {
      flex: 1;
    }
    
    .audio-visual-text {
      flex: 1;
      padding-left: 2rem;
    }
  }

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