
    :root {
      --primary: #8a0303;
      --secondary: #2b1211;
      --accent: #ff6b00;
      --text-light: #f8e6e6;
      --text-dark: #1a0505;
      --background: #0f0606;
      --overlay: rgba(15, 6, 6, 0.85);
    }

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

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

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

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

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

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

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

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

    .btn {
      display: inline-block;
      padding: 1rem 2rem;
      background-color: var(--primary);
      color: var(--text-light);
      text-decoration: none;
      text-transform: uppercase;
      font-weight: bold;
      border: none;
      border-radius: 0;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      z-index: 1;
      cursor: pointer;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background-color: var(--accent);
      transition: all 0.3s ease;
      z-index: -1;
    }

    .btn:hover::before {
      left: 0;
    }

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

    .section {
      position: relative;
      padding: 5rem 2rem;
      overflow: hidden;
    }

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

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

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

    .hero-content {
      max-width: 800px;
      padding: 2rem;
      background-color: rgba(15, 6, 6, 0.7);
      border-left: 4px solid var(--accent);
      border-right: 4px solid var(--accent);
      transform: skewX(-5deg);
    }

    .hero-content > * {
      transform: skewX(5deg);
    }

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

    /* Game Overview Section */
    .game-overview {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .game-overview-content {
      padding: 2rem;
      background-color: rgba(43, 18, 17, 0.7);
      border-radius: 0;
      clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
      padding-bottom: 4rem;
    }

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

    .rating-score {
      font-size: 3rem;
      font-weight: bold;
      color: var(--accent);
      margin-right: 1rem;
    }

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

    /* Gameplay Features */
    .features {
      padding-top: 8rem;
      padding-bottom: 8rem;
    }

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

    .feature-card {
      background-color: rgba(43, 18, 17, 0.7);
      padding: 2rem;
      border-bottom: 3px solid var(--accent);
      transition: transform 0.3s ease;
    }

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

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

    .feature-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    /* Classes Section */
    .classes {
      padding-top: 8rem;
      padding-bottom: 8rem;
    }

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

    .class-card {
      position: relative;
      height: 400px;
      overflow: hidden;
      border: 2px solid var(--primary);
    }

    .class-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .class-content {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 2rem;
      background-color: var(--overlay);
      transform: translateY(70%);
      transition: transform 0.5s ease;
    }

    .class-card:hover .class-content {
      transform: translateY(0);
    }

    .class-card:hover .class-image {
      transform: scale(1.1);
    }

    .class-title {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
    }

    .class-description {
      margin-top: 1rem;
    }

    /* Testimonials */
    .testimonials {
      text-align: center;
      padding-top: 8rem;
      padding-bottom: 8rem;
    }

    .testimonial-card {
      background-color: rgba(43, 18, 17, 0.7);
      padding: 2rem;
      margin: 0 auto;
      max-width: 800px;
      position: relative;
    }

    .testimonial-text {
      font-size: 1.2rem;
      font-style: italic;
      margin-bottom: 1.5rem;
    }

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

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 5rem;
      color: rgba(255, 107, 0, 0.2);
      font-family: Georgia, serif;
    }

    /* CTA Section */
    .cta {
      text-align: center;
      padding: 8rem 2rem;
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
      background-color: rgba(43, 18, 17, 0.7);
      padding: 3rem;
      border-radius: 0;
      position: relative;
    }

    .cta-content::before,
    .cta-content::after {
      content: '';
      position: absolute;
      width: 50px;
      height: 50px;
      border: 3px solid var(--accent);
    }

    .cta-content::before {
      top: 10px;
      left: 10px;
      border-right: none;
      border-bottom: none;
    }

    .cta-content::after {
      bottom: 10px;
      right: 10px;
      border-left: none;
      border-top: none;
    }

    /* Responsive Design */
    @media (min-width: 768px) {
      h1 {
        font-size: 4rem;
      }
      
      .game-overview {
        grid-template-columns: 1fr 1fr;
      }
      
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .class-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .class-cards {
        grid-template-columns: repeat(3, 1fr);
      }
    }
  