
  :root {
    --primary: #cd2f2f;
    --secondary: #2d2d2d;
    --accent: #8b5d33;
    --light: #f5f5f5;
    --dark: #1a1a1a;
    --text-dark: #333333;
    --text-light: #f5f5f5;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px 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-dark);
    background-color: var(--dark);
  }

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

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

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

  h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
  }

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

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

  p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
  }

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

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

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

  .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.9) 100%);
    z-index: 1;
  }

  .hero-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--light);
  }

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

  .overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-text {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
  }

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

  .gameplay-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
  }

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

  .feature-card i {
    color: var(--primary);
    margin-bottom: 1rem;
  }

  .gameplay-image-container {
    margin-top: 3rem;
    text-align: center;
  }

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

  .story-quote {
    margin: 3rem 0;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--primary);
    border-radius: var(--border-radius);
  }

  blockquote {
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  cite {
    font-style: normal;
    font-weight: bold;
    display: block;
    text-align: right;
    color: var(--primary);
  }

  /* Visuals Section */
  .visuals-section {
    background-color: var(--dark);
  }

  .visuals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .visuals-text {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
  }

  /* DLC Section */
  .dlc-section {
    background-color: var(--secondary);
    padding: 5rem 0;
  }

  .dlc-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dlc-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
  }

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

  .dlc-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }

  .dlc-card h3, .dlc-card p {
    padding: 0 1.5rem;
  }

  .dlc-card h3 {
    margin-top: 1.5rem;
  }

  .dlc-card p {
    padding-bottom: 1.5rem;
  }

  /* Verdict Section */
  .verdict-section {
    background-color: var(--dark);
    padding: 5rem 0;
  }

  .verdict-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rating-box {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .rating-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--light);
  }

  .rating-max {
    font-size: 1.2rem;
    color: var(--light);
    opacity: 0.8;
  }

  .verdict-text {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
  }

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

  .pros, .cons {
    padding: 1.5rem;
    border-radius: var(--border-radius);
  }

  .pros {
    background-color: rgba(0, 128, 0, 0.1);
    border-left: 5px solid #00a000;
  }

  .cons {
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 5px solid #dc3545;
  }

  .pros h4, .cons h4 {
    margin-bottom: 1rem;
    color: var(--light);
  }

  .pros ul, .cons ul {
    margin-left: 1.5rem;
    color: var(--text-light);
  }

  .pros li, .cons li {
    margin-bottom: 0.5rem;
  }

  /* CTA Section */
  .cta-section {
    background-color: var(--secondary);
    text-align: center;
  }

  .comment-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: var(--border-radius);
  }

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

  label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light);
  }

  input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light);
  }

  input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
  }

  .btn-submit {
    background: linear-gradient(135deg, var(--primary) 0%, #a52020 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(205, 47, 47, 0.4);
  }

  /* Media Queries */
  @media (min-width: 768px) {
    h1 {
      font-size: 4rem;
    }
    
    .overview-grid, .visuals-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .gameplay-features {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .dlc-cards {
      grid-template-columns: 1fr 1fr;
    }
    
    .verdict-content {
      grid-template-columns: auto 1fr;
    }
    
    .pros-cons {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (min-width: 1024px) {
    section {
      padding: 7rem 0;
    }
    
    h1 {
      font-size: 5rem;
    }
    
    .hero-description {
      font-size: 1.5rem;
    }
  }

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