
  :root {
    --primary: #2a2d34;
    --secondary: #6d213c;
    --accent: #e3b23c;
    --light: #f5f5f5;
    --dark: #1a1a1a;
    --text: #333;
    --text-light: #f5f5f5;
    --border-radius: 5px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }

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

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

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

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

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

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

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

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

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

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

  p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1.5rem;
  }

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

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

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

  .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary);
    color: var(--light);
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow);
  }

  .btn:hover {
    background-color: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
  }

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

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

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

  /* Hero Section */
  .hero-section {
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    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), rgba(0, 0, 0, 0.5));
    z-index: 1;
  }

  .hero-section .content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
  }

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

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

  .game-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    font-size: 1.2rem;
  }

  /* Game Intro Section */
  .game-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .game-intro .text-content {
    order: 1;
  }

  .game-intro .image-wrapper {
    order: 2;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    transform: rotate(2deg);
    box-shadow: var(--shadow);
  }

  .game-intro .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 45, 52, 0.2), rgba(109, 33, 60, 0.2));
    z-index: 1;
  }

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

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

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

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

  .feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
  }

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

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

  .feature-card p {
    color: var(--light);
    opacity: 0.9;
  }

  /* Story Section */
  .story-section .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
  }

  .story-section .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transform: rotate(-2deg);
  }

  .quote {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(227, 178, 60, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: var(--border-radius);
  }

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

  .quote cite {
    font-style: normal;
    font-weight: bold;
    display: block;
    text-align: right;
  }

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

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

  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }

  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
    transform: translateX(-50%);
  }

  .timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
  }

  .timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
  }

  .year {
    width: 100px;
    background-color: var(--accent);
    color: var(--dark);
    font-weight: bold;
    padding: 0.5rem;
    text-align: center;
    border-radius: var(--border-radius);
    z-index: 1;
    position: relative;
    box-shadow: var(--shadow);
  }

  .event {
    width: calc(50% - 70px);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    position: relative;
  }

  .event::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .timeline-item:nth-child(odd) .event::before {
    left: -30px;
  }

  .timeline-item:nth-child(even) .event::before {
    right: -30px;
  }

  .event h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
  }

  .event p {
    color: var(--light);
    opacity: 0.9;
    margin-bottom: 0;
  }

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

  .review-section h2 {
    text-align: center;
    margin-bottom: 3rem;
  }

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

  .review-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }

  .review-card h3 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }

  .review-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
  }

  .review-card ul {
    list-style-type: none;
  }

  .review-card li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .review-card li i {
    color: var(--accent);
    margin-top: 0.3rem;
  }

  .verdict {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
  }

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

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

  .rating-label {
    width: 150px;
    font-weight: bold;
  }

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

  .rating-fill {
    height: 100%;
    background-color: var(--accent);
  }

  .rating-value {
    width: 50px;
    text-align: right;
    font-weight: bold;
  }

  /* Other Games Section */
  .other-games {
    background-color: var(--light);
  }

  .other-games h2 {
    text-align: center;
    margin-bottom: 3rem;
  }

  .games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .game-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

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

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

  .game-card h3, .game-card p, .game-card .btn {
    margin: 1rem;
  }

  .game-card .btn {
    margin-bottom: 1.5rem;
    width: calc(100% - 2rem);
  }

  /* CTA Section */
  .cta-section {
    text-align: center;
    color: var(--light);
    position: relative;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(42, 45, 52, 0.8), rgba(109, 33, 60, 0.8));
    z-index: 1;
  }

  .cta-section .container {
    position: relative;
    z-index: 2;
  }

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

  .cta-section p {
    color: var(--light);
    max-width: 700px;
    margin: 0 auto 2rem;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }

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

  .comments-section h2 {
    text-align: center;
    margin-bottom: 3rem;
  }

  .comment-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }

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

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }

  .form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Roboto', sans-serif;
  }

  .star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .star-rating input {
    display: none;
  }

  .star-rating label {
    cursor: pointer;
    color: #ddd;
    font-size: 1.5rem;
    padding: 0 0.2rem;
    transition: var(--transition);
  }

  .star-rating label:hover,
  .star-rating label:hover ~ label,
  .star-rating input:checked ~ label {
    color: var(--accent);
  }

  .comment-form .btn {
    margin-top: 1rem;
  }

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

    h2 {
      font-size: 2rem;
    }

    .game-intro .container,
    .story-section .container {
      grid-template-columns: 1fr;
    }

    .game-intro .text-content,
    .game-intro .image-wrapper {
      order: 0;
    }

    .review-grid {
      grid-template-columns: 1fr;
    }

    .timeline::before {
      left: 30px;
    }

    .timeline-item {
      flex-direction: row !important;
    }

    .year {
      width: 80px;
      margin-right: 30px;
    }

    .event {
      width: calc(100% - 110px);
    }

    .timeline-item .event::before {
      left: -30px !important;
      right: auto !important;
    }

    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }

    .cta-buttons .btn {
      width: 100%;
      max-width: 300px;
    }
  }
