
    :root {
      --primary: #cd2c2c;
      --secondary: #2c2c2c;
      --accent: #8a6c47;
      --light: #f5f5f5;
      --dark: #1a1a1a;
      --wolf-gray: #58595b;
      --witcher-gold: #d4af37;
    }

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

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

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

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

    .btn {
      display: inline-block;
      padding: 12px 28px;
      background-color: var(--primary);
      color: var(--light);
      text-decoration: none;
      border: none;
      border-radius: 2px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn:hover {
      background-color: #b01e1e;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

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

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

    /* Hero Section */
    .hero {
      position: relative;
      height: 90vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero__bg-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.7);
    }

    .hero__content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 2rem;
      background-color: rgba(26, 26, 26, 0.7);
      backdrop-filter: blur(5px);
      border-left: 4px solid var(--primary);
      transform: skewX(-5deg);
    }

    .hero__content-inner {
      transform: skewX(5deg);
    }

    .hero__title {
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--light);
      margin-bottom: 1rem;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .hero__subtitle {
      font-size: 1.5rem;
      color: var(--witcher-gold);
      margin-bottom: 2rem;
    }

    .hero__text {
      color: var(--light);
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    /* Game Overview Section */
    .game-overview {
      position: relative;
      padding: 5rem 0;
      background-color: var(--dark);
      color: var(--light);
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 2rem;
      color: var(--light);
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 80px;
      height: 4px;
      background-color: var(--primary);
    }

    .game-overview__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .game-overview__content {
      padding-right: 2rem;
    }

    .game-overview__image {
      width: 100%;
      height: auto;
      border: 3px solid var(--accent);
      box-shadow: 10px 10px 0 var(--primary);
      transform: rotate(2deg);
    }

    /* Features Section */
    .features {
      padding: 5rem 0;
      background-color: var(--light);
    }

    .features__title {
      color: var(--dark);
      text-align: center;
      margin-bottom: 3rem;
    }

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

    .feature-card {
      background-color: white;
      padding: 2rem;
      border-radius: 5px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background-color: var(--primary);
      z-index: -1;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

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

    .feature-card__title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--dark);
    }

    .feature-card__text {
      color: var(--secondary);
    }

    /* Gameplay Section */
    .gameplay {
      position: relative;
      padding: 5rem 0;
      background-color: var(--wolf-gray);
      color: var(--light);
      overflow: hidden;
    }

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

    .gameplay__content {
      position: relative;
      z-index: 1;
    }

    .gameplay__title {
      margin-bottom: 3rem;
    }

    .gameplay__flex {
      display: flex;
      gap: 3rem;
      align-items: center;
    }

    .gameplay__text {
      flex: 1;
    }

    .gameplay__image-container {
      flex: 1;
      position: relative;
    }

    .gameplay__image {
      width: 100%;
      border-radius: 5px;
      transform: perspective(1000px) rotateY(-15deg);
      box-shadow: 20px 20px 50px rgba(0,0,0,0.4);
    }

    /* Reviews Section */
    .reviews {
      padding: 5rem 0;
      background-color: var(--dark);
      color: var(--light);
    }

    .reviews__title {
      text-align: center;
      margin-bottom: 3rem;
    }

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

    .review-card {
      background-color: rgba(255,255,255,0.05);
      padding: 2rem;
      border-radius: 5px;
      position: relative;
    }

    .review-card__quote {
      font-size: 4rem;
      position: absolute;
      top: -20px;
      left: 20px;
      color: var(--primary);
      opacity: 0.5;
    }

    .review-card__text {
      font-style: italic;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .review-card__author {
      display: flex;
      align-items: center;
    }

    .review-card__avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 1rem;
      object-fit: cover;
    }

    .review-card__name {
      font-weight: 700;
    }

    .review-card__source {
      font-size: 0.9rem;
      color: var(--witcher-gold);
    }

    /* Call to Action Section */
    .cta {
      padding: 5rem 0;
      background-color: var(--primary);
      color: var(--light);
      text-align: center;
    }

    .cta__title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .cta__text {
      max-width: 700px;
      margin: 0 auto 2rem;
      font-size: 1.2rem;
    }

    .cta__buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

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

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

    .cta .btn--secondary {
      background-color: transparent;
      border-color: var(--light);
      color: var(--light);
    }

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

    /* Media Queries */
    @media (max-width: 1024px) {
      .hero__title {
        font-size: 3rem;
      }

      .features__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .hero__title {
        font-size: 2.5rem;
      }

      .hero__content {
        max-width: 100%;
      }

      .game-overview__grid,
      .gameplay__flex,
      .reviews__grid {
        grid-template-columns: 1fr;
      }

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

      .gameplay__flex {
        flex-direction: column;
      }

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