      :root {
        /* Fonts */
        --pixelfont: "Press Start 2P", system-ui;
        --contentfont: Arial, Helvetica, sans-serif;

        /* Colors */
        --maincolor: #ff55ff;
        --maincolor2: yellowgreen;
        --boxcolor: #18181b;
        --bluecolor: #7289da;
        --mainbg: #0f0f10;
        --bg-dark: #0f0f10;
        --bg-panel: #18181b;
        --text-light: aliceblue;
        --text-blue: lightblue;
      }

      body {
        background-color: var(--mainbg);
        color: var(--text-light);
        font-family: var(--contentfont);
        line-height: 1.6;
        overflow-x: hidden;
      }

      /* Increased padding on the container for larger screens */
      .container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 80px 5%;
      }

      /* --- Hero Section --- */
      .hero {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        margin-bottom: 100px;
      }

      .hero-content {
        flex: 1 1 500px; /* Grow, shrink, base width */
      }

      .hero-subtitle {
        color: var(--maincolor2);
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        font-size: 0.9rem;
      }

      .hero-title {
        font-family: var(--pixelfont);
        color: var(--maincolor2);
        font-size: 2.2rem;
        line-height: 1.4;
        margin-bottom: 25px;
        text-shadow: 3px 3px 0px var(--text-light);
      }

      .hero-description {
        margin-bottom: 20px;
        font-size: 1.1rem;
        color: #d4d4d8;
      }

      .requirements-list {
        list-style: none;
        margin-bottom: 30px;
        background-color: var(--bg-panel);
        padding: 25px;
        border-radius: 12px;
        border: 1px solid #2a2a2f;
      }

      .requirements-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        font-size: 0.95rem;
      }

      .requirements-list li:last-child {
        margin-bottom: 0;
      }

      .requirements-list li i {
        color: var(--maincolor2);
        font-size: 1.2rem;
        margin-top: 2px;
      }

      .hero-note {
        font-size: 0.95rem;
        color: var(--text-blue);
        margin-bottom: 30px;
        font-style: italic;
      }

      .btn-group {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
      }

      .btn {
        padding: 14px 28px;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.2s ease;
        border: none;
        font-family: var(--contentfont);
        font-size: 1rem;
        text-align: center;
        display: inline-block;
      }

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

      .btn-primary:hover {
        background-color: #ff77ff;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 85, 255, 0.3);
      }

      .btn-secondary {
        background-color: var(--bg-panel);
        color: var(--text-light);
        border: 1px solid #333;
      }

      .btn-secondary:hover {
        background-color: #27272c;
        transform: translateY(-3px);
        border-color: #555;
      }

      /* --- Hero Graphics (Right Side) --- */
      .hero-graphics {
        flex: 1 1 400px;
        position: relative;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .stat-card {
        background-color: var(--bg-panel);
        border-radius: 12px;
        padding: 25px;
        position: absolute;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        border: 1px solid #2a2a2f;
        transition: transform 0.3s ease;
      }

      .stat-card:hover {
        transform: translateY(-5px);
        z-index: 10;
      }

      .card-1 {
        top: 10px;
        left: 5%;
        width: 300px;
        z-index: 1;
        background: url(/images/team.png);
        background-size: cover;
        height: 200px;
      }

      .card-2 {
        bottom: 50px;
        right: 0%;
        width: 300px;
        z-index: 2;
      }

      .card-3 {
        bottom: -20px;
        left: 15%;
        width: 240px;
        z-index: 3;
        background-color: #1c1c21;
      }

      .stat-number {
        font-family: var(--pixelfont);
        font-size: 2.5rem;
        color: var(--text-light);
        margin-bottom: 8px;
      }

      .stat-label {
        color: var(--maincolor);
        font-weight: bold;
        font-size: 0.9rem;
        letter-spacing: 1px;
        text-transform: uppercase;
      }

      .stat-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        color: var(--bluecolor);
      }

      .stat-value {
        font-size: 1.6rem;
        font-weight: bold;
        color: var(--maincolor2);
        font-family: var(--pixelfont);
      }

      /* --- Features/Benefits Section --- */
      .features-section {
        padding: 40px 0;
      }

      .features-title {
        font-family: var(--pixelfont);
        font-size: 1.5rem;
        margin-bottom: 60px;
        color: var(--text-light);
        line-height: 1.6;
        text-align: center;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(
          auto-fit,
          minmax(280px, 1fr)
        ); /* Adjusted for better mobile wrapping */
        gap: 40px;
      }

      .feature-card {
        display: flex;
        gap: 20px;
        align-items: flex-start;
      }

      .feature-icon-wrapper {
        flex-shrink: 0;
        width: 65px;
        height: 65px;
        background-color: var(--bg-panel);
        border: 1px solid #2a2a2f;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      }

      .feature-icon-wrapper i {
        font-size: 1.6rem;
        color: var(--maincolor2);
      }

      .feature-text h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
        color: var(--text-light);
        font-family: var(--contentfont);
      }

      .feature-text p {
        color: #a1a1aa;
        font-size: 0.95rem;
        line-height: 1.6;
      }

      /* --- Mobile Responsiveness --- */
      @media (max-width: 992px) {
        .hero-title {
          font-size: 1.8rem;
        }
        .hero-graphics {
          height: 350px;
        }
      }

      @media (max-width: 768px) {
        .container {
          padding: 50px 25px; /* Adjust padding for mobile screens */
        }

        .hero {
          flex-direction: column;
          margin-bottom: 60px;
          gap: 30px;
        }

        .hero-title {
          font-size: 1.5rem;
        }

        .btn-group {
          flex-direction: column;
          width: 100%;
        }

        .btn {
          width: 100%;
        }

        .hero-graphics {
          width: 100%;
          height: auto;
          flex-direction: column;
          gap: 20px;
        }

        /* Stack stat cards cleanly on mobile instead of floating them */
        .stat-card {
          position: relative;
          width: 100%;
          top: auto !important;
          left: auto !important;
          right: auto !important;
          bottom: auto !important;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .features-title {
          font-size: 1.2rem;
          margin-bottom: 40px;
        }

        .features-grid {
          gap: 30px;
        }
      }