
    :root {
      --primary: #1a1a2e;
      --secondary: #16213e;
      --accent: #ff4655;
      --text-light: #e6e6e6;
      --text-dark: #0f0f0f;
      --bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }

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

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

    .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: 5rem 2rem;
      overflow: hidden;
    }

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

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

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

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

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

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

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background-color: var(--primary);
    }

    .hero__content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      padding: 2rem;
      position: relative;
      z-index: 1;
    }

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

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

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

    .features {
      background-color: var(--secondary);
      padding: 5rem 2rem;
    }

    .features__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--text-light);
    }

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

    .feature {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 2rem;
      transition: transform 0.3s ease;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature: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;
      color: var(--text-light);
    }

    .feature__desc {
      color: var(--text-light);
      opacity: 0.8;
    }

    .gameplay {
      padding: 5rem 2rem;
      position: relative;
    }

    .gameplay__content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .gameplay__title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--text-light);
    }

    .gameplay__desc {
      margin-bottom: 2rem;
      color: var(--text-light);
      font-size: 1.1rem;
      max-width: 800px;
    }

    .gameplay__img {
      border-radius: 10px;
      max-width: 100%;
      height: auto;
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
      margin: 2rem 0;
    }

    .heroes {
      padding: 5rem 2rem;
      background-color: var(--secondary);
    }

    .heroes__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--text-light);
    }

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

    .hero-card {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.05);
      transition: transform 0.3s ease;
    }

    .hero-card:hover {
      transform: scale(1.05);
    }

    .hero-card__img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .hero-card__content {
      padding: 1.5rem;
    }

    .hero-card__title {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--text-light);
    }

    .hero-card__desc {
      color: var(--text-light);
      opacity: 0.8;
      font-size: 0.9rem;
    }

    .testimonials {
      padding: 5rem 2rem;
      position: relative;
    }

    .testimonials__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--text-light);
    }

    .testimonial {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 2rem;
      margin-bottom: 2rem;
      position: relative;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .testimonial__text {
      font-size: 1.1rem;
      font-style: italic;
      margin-bottom: 1.5rem;
      color: var(--text-light);
    }

    .testimonial__author {
      display: flex;
      align-items: center;
    }

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

    .testimonial__info {
      display: flex;
      flex-direction: column;
    }

    .testimonial__name {
      font-weight: 700;
      color: var(--text-light);
    }

    .testimonial__role {
      color: var(--accent);
      font-size: 0.9rem;
    }

    .cta-section {
      padding: 5rem 2rem;
      background-color: var(--secondary);
      text-align: center;
    }

    .cta-section__title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--text-light);
    }

    .cta-section__desc {
      max-width: 700px;
      margin: 0 auto 2rem;
      color: var(--text-light);
      font-size: 1.1rem;
    }

    .newsletter {
      max-width: 600px;
      margin: 0 auto;
    }

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

    .newsletter__input {
      flex: 1 1 300px;
      padding: 1rem;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      background: rgba(255, 255, 255, 0.1);
      color: var(--text-light);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .newsletter__input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .newsletter__button {
      padding: 1rem 2rem;
      background-color: var(--accent);
      color: var(--text-light);
      border: none;
      border-radius: 4px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter__button:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
      .hero__title {
        font-size: 2.5rem;
      }
      
      .hero__subtitle {
        font-size: 1.2rem;
      }
      
      .section {
        padding: 3rem 1.5rem;
      }
      
      .features__grid,
      .heroes__grid {
        grid-template-columns: 1fr;
      }
      
      .newsletter__form {
        flex-direction: column;
      }
      
      .newsletter__input,
      .newsletter__button {
        width: 100%;
      }
    }

    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeIn 1s ease forwards;
    }

    .fade-in-delay-1 {
      opacity: 0;
      animation: fadeIn 1s ease forwards 0.2s;
    }

    .fade-in-delay-2 {
      opacity: 0;
      animation: fadeIn 1s ease forwards 0.4s;
    }

    .diagonal-section {
      position: relative;
      padding: 5rem 2rem;
      clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
      margin: 2rem 0;
    }

    .floating {
      animation: floating 3s ease-in-out infinite;
    }

    @keyframes floating {
      0% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-15px);
      }
      100% {
        transform: translateY(0px);
      }
    }
  