
  :root {
    --primary: #ff4400;
    --primary-dark: #cc3300;
    --secondary: #5b0e2d;
    --dark: #1a0a0d;
    --darker: #0a0506;
    --light: #f8f0e8;
    --gray: #9a8c98;
    --accent: #7d1a0c;
    --success: #2d6a4f;
    --danger: #9e2a2b;
  }

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

  body {
    font-family: 'Cinzel', 'Times New Roman', serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
  }

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

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

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    margin-bottom: 1.5rem;
    color: var(--light);
    text-shadow: 0 0 10px rgba(255, 68, 0, 0.3);
  }

  h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

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

  h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
  }

  h3 {
    font-size: 1.8rem;
    color: var(--primary);
  }

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

  img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }

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

  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
  }

  .hero-section .content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
  }

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

  .rating-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
  }

  .rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .rating-score {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 68, 0, 0.5);
  }

  .rating-label {
    font-size: 1rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Review Main Section */
  .review-main {
    background-color: var(--dark);
    padding: 4rem 0;
  }

  .review-header {
    margin-bottom: 2rem;
  }

  .review-meta {
    display: flex;
    gap: 2rem;
    color: var(--gray);
    margin-bottom: 2rem;
  }

  .review-content img {
    float: right;
    width: 40%;
    margin: 0 0 2rem 2rem;
    border: 3px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .pros-cons {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    clear: both;
  }

  .pros, .cons {
    flex: 1;
    background-color: rgba(10, 5, 6, 0.7);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .pros h3 {
    color: var(--success);
  }

  .cons h3 {
    color: var(--danger);
  }

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

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

  .pros i, .cons i {
    margin-right: 1rem;
    font-size: 1.2rem;
  }

  .pros i {
    color: var(--success);
  }

  .cons i {
    color: var(--danger);
  }

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

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

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

  .gameplay-item {
    background-color: rgba(26, 10, 13, 0.8);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

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

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

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

  .rating {
    margin-top: 1.5rem;
    text-align: right;
  }

  .rating-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
    background-color: rgba(255, 68, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
  }

  /* Classes Section */
  .classes-section {
    padding: 6rem 0;
    background-color: var(--dark);
  }

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

  .class-card {
    background-color: rgba(10, 5, 6, 0.7);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

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

  .class-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
  }

  .class-info {
    padding: 1.5rem;
  }

  .class-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }

  .rating-bar {
    flex: 1;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-right: 1rem;
  }

  .rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
  }

  .rating-number {
    font-weight: bold;
    color: var(--primary);
  }

  /* Seasons Section */
  .seasons-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--darker);
  }

  .season-review {
    background-color: rgba(26, 10, 13, 0.8);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .season-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
  }

  .season-rating {
    color: var(--primary);
    font-size: 1.5rem;
  }

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

  .feature {
    background-color: rgba(10, 5, 6, 0.5);
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
  }

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

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

  .quote {
    background-color: rgba(91, 14, 45, 0.3);
    padding: 2rem;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
  }

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

  cite {
    display: block;
    text-align: right;
    color: var(--gray);
  }

  /* Conclusion Section */
  .conclusion-section {
    padding: 6rem 0;
    background-color: var(--dark);
    text-align: center;
  }

  .final-score {
    margin: 0 auto 3rem;
    max-width: 200px;
  }

  .score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(255, 68, 0, 0.3);
  }

  .score-number {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
  }

  .score-max {
    font-size: 1.5rem;
    opacity: 0.8;
  }

  .score-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
  }

  .conclusion-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
  }

  .recommendation {
    display: inline-block;
    background-color: var(--success);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    margin: 2rem 0;
    font-size: 1.2rem;
  }

  .recommendation i {
    margin-right: 0.5rem;
  }

  .review-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .share-label {
    margin-right: 1rem;
    color: var(--gray);
  }

  .social-icons {
    display: flex;
    gap: 1rem;
  }

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .social-icon:hover {
    background-color: var(--primary);
  }

  /* Utility Classes */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
    
    h2 {
      font-size: 2rem;
    }
    
    .review-content img {
      float: none;
      width: 100%;
      margin: 0 0 2rem 0;
    }
    
    .pros-cons {
      flex-direction: column;
    }
    
    .season-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .rating-summary {
      flex-direction: column;
      gap: 1rem;
    }
  }

  @media (max-width: 480px) {
    section {
      padding: 3rem 0;
    }
    
    .gameplay-grid,
    .classes-grid,
    .season-features {
      grid-template-columns: 1fr;
    }
  }
