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

      :root {
        --h2-size: 2.2rem;
        --h2-size-mobile: 1.6rem;
        --h2-size-xs: 1.4rem;
        --h3-size: 1.3rem;
        --h3-size-mobile: 1.1rem;
        --h3-size-xs: 1rem;
        --p-size: 1.1rem;
        --p-line: 1.65;
        --p-margin: 1.1rem;
        --p-size-mobile: 0.9rem;
        --p-line-mobile: 1.6;
        --p-margin-mobile: 1rem;
        --p-size-xs: 0.85rem;
      }

      html {
        scroll-behavior: smooth;
        scroll-snap-type: y mandatory;
      }

      /* Hide default scrollbar */
      html {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
      }

      ::-webkit-scrollbar {
        width: 0px;
        background: transparent;
      }

      body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
        background: linear-gradient(
          135deg,
          #1a0000 0%,
          #2a0a0a 30%,
          #0a0a2e 60%,
          #1a1a4a 100%
        );
        color: #fff;
        min-height: 100vh;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
      }

      /* Custom Step Scrollbar */
      .custom-scrollbar {
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
      }

      .scroll-step {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(74, 158, 255, 0.3);
        border: 2px solid rgba(74, 158, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
      }

      .scroll-step:hover {
        background: rgba(74, 158, 255, 0.6);
        border-color: rgba(74, 158, 255, 0.9);
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(74, 158, 255, 0.6);
      }

      .scroll-step.active {
        background: #4a9eff;
        border-color: #5ab5ff;
        box-shadow:
          0 0 15px rgba(74, 158, 255, 0.8),
          inset 0 0 10px rgba(255, 255, 255, 0.2);
        transform: scale(1.4);
      }

      .scroll-step::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.8);
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .scroll-step.active::after {
        opacity: 1;
      }

      /* Connector line between steps */
      .scroll-connector {
        position: absolute;
        right: 5px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(
          to bottom,
          transparent 0%,
          rgba(74, 158, 255, 0.3) 20%,
          rgba(74, 158, 255, 0.3) 80%,
          transparent 100%
        );
        pointer-events: none;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
      }

      /* Header */
      header {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(26, 0, 0, 0.8);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(74, 158, 255, 0.2);
      }

      .header-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 1200px;
        padding: 0 20px;
      }

      .logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
      }

      .logo img {
        height: 54px;
        width: 54px;
        object-fit: contain;
        filter: drop-shadow(0 2px 8px rgba(220, 10, 45, 0.5))
          drop-shadow(0 0 15px rgba(74, 158, 255, 0.3));
        transition: transform 0.3s ease;
      }

      .logo:hover img {
        transform: scale(1.05);
      }

      .logo-text {
        font-size: 1.2rem;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        letter-spacing: -1px;
        color: #dc0a2d;
        white-space: nowrap;
      }

      .tagline {
        font-size: 0.75rem;
        opacity: 0.9;
        font-weight: 300;
        color: #5ab5ff;
        white-space: nowrap;
      }

      /* Section Base Styles */
      .section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 4rem 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
      }

      .section.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Hero Section */
      .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 0 4rem;
        text-align: center;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      .hero-content {
        max-width: 900px;
        margin: 0 auto 2rem;
        text-align: center;
      }

      .hero-content h1 {
        margin-bottom: 1.5rem;
        text-align: center;
      }

      .hero-content p {
        font-size: var(--p-size);
        line-height: var(--p-line);
        margin-bottom: 0;
        text-align: center;
      }

      .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
        color: #dc0a2d;
        text-align: center;
      }

      .hero p {
        font-size: var(--p-size);
        margin-bottom: 3rem;
        opacity: 0.95;
        line-height: var(--p-line);
        font-weight: 300;
        text-align: center;
      }

      /* Features Grid */
      .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
      }

      .feature {
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
      }

      .feature:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
      }

      .feature:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
      }

      .feature:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
      }

      .feature:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
      }

      .features-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
      }

      .features-section.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .features-section h2 {
        font-size: var(--h2-size);
        margin-bottom: 2rem;
        font-weight: 700;
        color: #dc0a2d;
        text-align: center;
      }

      .feature {
        background: rgba(10, 10, 46, 0.7);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 2px solid rgba(74, 158, 255, 0.4);
        box-shadow: 0 0 20px rgba(74, 158, 255, 0.2);
      }

      .feature:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(74, 158, 255, 0.5),
          0 0 40px rgba(220, 10, 45, 0.2);
        border-color: rgba(74, 158, 255, 0.8);
      }

      .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
        line-height: 1;
      }

      .feature h3 {
        font-size: var(--h3-size);
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #ffd700;
      }

      .feature p {
        opacity: 0.9;
        font-size: var(--p-size);
        line-height: var(--p-line);
        margin-bottom: 0;
      }

      /* CTA Buttons */
      .cta-section {
        text-align: center;
        margin-top: 3rem;
      }

      .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2rem;
      }

      .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        border: 2px solid transparent;
        min-width: 250px;
        justify-content: center;
      }

      .cta-button.primary {
        background: linear-gradient(135deg, #dc0a2d 0%, #ff1a3d 100%);
        color: #fff;
        border-color: #dc0a2d;
        box-shadow: 0 6px 25px rgba(220, 10, 45, 0.5),
                    0 0 30px rgba(220, 10, 45, 0.3);
      }

      .cta-button.primary:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 30px rgba(220, 10, 45, 0.7),
                    0 0 40px rgba(220, 10, 45, 0.4);
        background: linear-gradient(135deg, #ff1a3d 0%, #ff3d5f 100%);
      }

      .cta-button.secondary {
        background: transparent;
        color: #4a9eff;
        border-color: #4a9eff;
      }

      .cta-button.secondary:hover {
        background: rgba(74, 158, 255, 0.2);
        transform: translateY(-2px);
      }

      .cta-button.coming-soon {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        cursor: not-allowed;
        opacity: 0.7;
      }

      .button-icon {
        font-size: 1.5rem;
      }

      .cta-subtext {
        margin-top: 2rem;
        font-size: 1rem;
        opacity: 0.8;
        color: #5ab5ff;
      }

      /* Footer */
      footer {
        text-align: center;
        padding: 3rem 0;
        opacity: 0.9;
        font-size: 0.9rem;
        background: rgba(10, 10, 46, 0.3);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(74, 158, 255, 0.2);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 10;
      }

      footer .cta-section {
        margin-bottom: 2rem;
      }

      footer a:not(.cta-button) {
        color: #5ab5ff;
        text-decoration: none;
        transition: color 0.3s ease;
        margin: 0 0.5rem;
      }

      footer a:not(.cta-button):hover {
        color: #4a9eff;
        text-decoration: underline;
      }

      .footer-links {
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
      }

      /* Retro Controls */
      .retro-controls {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 3rem;
      }

      .controls-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
      }

      /* Retro Screen */
      .retro-screen {
        width: 200px;
        height: 80px;
        background: linear-gradient(135deg, #0a1a2a 0%, #051015 100%);
        border: 4px solid #000;
        border-radius: 8px;
        padding: 12px;
        box-shadow:
          inset 0 2px 8px rgba(0, 0, 0, 0.8),
          0 4px 12px rgba(0, 0, 0, 0.6),
          0 0 20px rgba(74, 158, 255, 0.3);
        position: relative;
        overflow: hidden;
      }

      .retro-screen::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
          repeating-linear-gradient(
            0deg,
            rgba(0, 255, 255, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 255, 255, 0.03) 3px
          );
        pointer-events: none;
      }

      .screen-text {
        font-family: 'Courier New', Courier, monospace;
        font-size: 1.2rem;
        font-weight: bold;
        color: #00ffff;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        position: relative;
        z-index: 1;
      }

      /* D-Pad */
      .dpad {
        position: relative;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .dpad-button {
        position: absolute;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border: 2px solid #000;
        box-shadow:
          inset 0 2px 4px rgba(255, 255, 255, 0.1),
          0 3px 6px rgba(0, 0, 0, 0.5),
          0 0 8px rgba(74, 158, 255, 0.3);
        transition: all 0.2s ease;
      }

      .dpad-button:hover {
        background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
        box-shadow:
          inset 0 2px 4px rgba(255, 255, 255, 0.15),
          0 6px 12px rgba(0, 0, 0, 0.6),
          0 0 15px rgba(74, 158, 255, 0.5);
      }

      /* Vertical bar (connects up and down) */
      .dpad-vertical {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 56px;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border: 2px solid #000;
        border-radius: 0;
        box-shadow:
          inset 0 2px 4px rgba(255, 255, 255, 0.1),
          0 4px 8px rgba(0, 0, 0, 0.5),
          0 0 10px rgba(74, 158, 255, 0.3);
        transition: all 0.2s ease;
        z-index: 0;
      }

      /* Horizontal bar (connects left and right) */
      .dpad-horizontal {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 56px;
        height: 24px;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border: 2px solid #000;
        border-radius: 0;
        box-shadow:
          inset 0 2px 4px rgba(255, 255, 255, 0.1),
          0 4px 8px rgba(0, 0, 0, 0.5),
          0 0 10px rgba(74, 158, 255, 0.3);
        transition: all 0.2s ease;
        z-index: 0;
      }

      .dpad:hover .dpad-vertical,
      .dpad:hover .dpad-horizontal {
        background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
        box-shadow:
          inset 0 2px 4px rgba(255, 255, 255, 0.15),
          0 6px 12px rgba(0, 0, 0, 0.6),
          0 0 15px rgba(74, 158, 255, 0.5);
      }

      .dpad-up {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 24px;
        border-radius: 5px 5px 0 0;
        border-bottom: none;
        border-width: 2px;
        z-index: 1;
      }

      .dpad-down {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 24px;
        border-radius: 0 0 5px 5px;
        border-top: none;
        border-width: 2px;
        z-index: 1;
      }

      .dpad-left {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        border-radius: 5px 0 0 5px;
        border-right: none;
        border-width: 2px;
        z-index: 1;
      }

      .dpad-right {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        border-radius: 0 5px 5px 0;
        border-left: none;
        border-width: 2px;
        z-index: 1;
      }

      .dpad-center {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        border: 2px solid #000;
        border-radius: 4px;
        z-index: 2;
        box-shadow:
          inset 0 2px 4px rgba(0, 0, 0, 0.5),
          0 2px 4px rgba(0, 0, 0, 0.3);
      }

      /* Action Buttons */
      .action-buttons {
        display: flex;
        gap: 1rem;
        align-items: center;
      }

      .action-button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #dc0a2d 0%, #b00824 100%);
        border: 2px solid #000;
        box-shadow:
          inset 0 2px 4px rgba(255, 255, 255, 0.2),
          0 3px 6px rgba(0, 0, 0, 0.5),
          0 0 12px rgba(220, 10, 45, 0.4);
        position: relative;
        transition: all 0.2s ease;
      }

      .action-button:hover {
        transform: scale(1.1);
        box-shadow:
          inset 0 2px 4px rgba(255, 255, 255, 0.3),
          0 6px 12px rgba(0, 0, 0, 0.6),
          0 0 20px rgba(220, 10, 45, 0.6);
      }

      .action-button::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
        pointer-events: none;
      }

      .action-button.button-b {
        background: linear-gradient(135deg, #4a9eff 0%, #2a7fdf 100%);
        box-shadow:
          inset 0 2px 4px rgba(255, 255, 255, 0.2),
          0 4px 8px rgba(0, 0, 0, 0.5),
          0 0 15px rgba(74, 158, 255, 0.4);
      }

      .action-button.button-b:hover {
        box-shadow:
          inset 0 2px 4px rgba(255, 255, 255, 0.3),
          0 6px 12px rgba(0, 0, 0, 0.6),
          0 0 20px rgba(74, 158, 255, 0.6);
      }

      /* Content Sections */
      .content-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
      }

      .content-section.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .content-section h2 {
        font-size: var(--h2-size);
        margin-bottom: 2rem;
        font-weight: 700;
        color: #dc0a2d;
        text-align: center;
      }

      .section-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
      }

      .section-logo img {
        height: 180px;
        width: 180px;
        object-fit: contain;
        filter: drop-shadow(0 2px 8px rgba(220, 10, 45, 0.5))
          drop-shadow(0 0 15px rgba(74, 158, 255, 0.3));
        transition: transform 0.3s ease;
      }

      .section-logo img:hover {
        transform: scale(1.1) rotate(5deg);
      }

      .content-section p {
        font-size: var(--p-size);
        opacity: 0.95;
        line-height: var(--p-line);
        max-width: 900px;
        margin: 0 auto var(--p-margin);
        text-align: center;
      }

      /* FAQ Section */
      .faq-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 0 8rem;
        scroll-snap-align: start;
        scroll-snap-stop: normal;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
      }

      .faq-section.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .faq-section h2 {
        font-size: var(--h2-size);
        margin-bottom: 2rem;
        font-weight: 700;
        color: #dc0a2d;
        text-align: center;
      }

      .faq-container {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }

      .faq-item {
        background: rgba(10, 10, 46, 0.6);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 2px solid rgba(74, 158, 255, 0.3);
        transition: all 0.3s ease;
        overflow: hidden;
      }

      .faq-item:hover {
        border-color: rgba(74, 158, 255, 0.6);
        box-shadow: 0 5px 20px rgba(74, 158, 255, 0.2);
      }

      .faq-item.active {
        border-color: rgba(74, 158, 255, 0.9);
        box-shadow: 0 5px 25px rgba(74, 158, 255, 0.4);
      }

      .faq-question {
        padding: 1.25rem 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        -webkit-user-select: none;
        user-select: none;
        transition: background 0.3s ease;
      }

      .faq-question:hover {
        background: rgba(74, 158, 255, 0.1);
      }

      .faq-question h3 {
        font-size: 1.1rem;
        margin: 0;
        color: #ffd700;
        font-weight: 600;
        flex: 1;
        padding-right: 1rem;
      }

      .faq-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #4a9eff;
        font-size: 1.5rem;
        font-weight: bold;
        transition: transform 0.3s ease;
        flex-shrink: 0;
      }

      .faq-item.active .faq-icon {
        transform: rotate(45deg);
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease-out;
        padding: 0 1.5rem;
      }

      .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 1.5rem 1.25rem;
      }

      .faq-answer p {
        opacity: 0.9;
        line-height: 1.65;
        font-size: var(--p-size);
        text-align: left;
        margin: 0;
        padding-top: 0.5rem;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .container {
          padding: 0 15px;
        }

        header {
          display: none;
          height: 0;
          padding: 0;
          margin: 0;
        }

        .header-content {
          gap: 0.75rem;
          flex-wrap: wrap;
          padding: 0 10px;
        }

        .logo img {
          height: 40px;
          width: 40px;
        }

        .logo-text {
          font-size: 1rem;
        }

        .tagline {
          font-size: 0.7rem;
          width: 100%;
          text-align: center;
          order: 3;
          margin-top: 0.25rem;
        }

      .hero {
        padding: 2rem 0 3rem;
        min-height: 100vh;
      }

      .container {
        padding: 0 28px;
      }

        .hero-content {
          margin-bottom: 1.5rem;
        }

        .hero h1 {
          font-size: 1.75rem;
          line-height: 1.3;
          margin-bottom: 1rem;
        }

        .hero p {
          font-size: var(--p-size-mobile);
          line-height: var(--p-line-mobile);
        }

  .features {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 100%;
    overflow-x: auto;
    padding: 0 1rem 0.5rem;
    scroll-snap-type: x mandatory;
  }

  .features::-webkit-scrollbar {
    height: 6px;
  }

  .features::-webkit-scrollbar-thumb {
    background: rgba(74, 158, 255, 0.5);
    border-radius: 10px;
  }

  .feature {
    min-width: calc(100% - 2rem);
    max-width: calc(100% - 2rem);
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 0;
  }

        .cta-section {
          margin-top: 1.5rem;
        }

        .cta-buttons {
          flex-direction: column;
          align-items: stretch;
          gap: 1rem;
        }

        .cta-button {
          width: 100%;
          justify-content: center;
          min-width: auto;
          padding: 1rem 1.5rem;
          font-size: 0.95rem;
        }

        .button-icon {
          font-size: 1.2rem;
        }

        .cta-subtext {
          font-size: 0.5rem;
          margin-top: 1rem;
        }

        .cta-subtext {
          font-size: 0.5rem;
        }

      .content-section {
        padding: 3rem 0;
        min-height: 100vh;
      }

        .content-section h2 {
          font-size: var(--h2-size-mobile);
          margin-bottom: 1.5rem;
        }

        .content-section p {
          font-size: var(--p-size-mobile);
          line-height: var(--p-line-mobile);
          margin-bottom: var(--p-margin-mobile);
        }

        .section-logo {
          margin-bottom: 0.75rem;
        }

        .section-logo img {
          height: 100px;
          width: 100px;
        }

        .retro-controls {
          gap: 1.25rem;
          margin-bottom: 2rem;
        }

        .retro-screen {
          width: 140px;
          height: 55px;
          padding: 6px;
        }

        .screen-text {
          font-size: 0.8rem;
          letter-spacing: 0.5px;
        }

        .controls-container {
          gap: 1.5rem;
        }

        .dpad {
          width: 55px;
          height: 55px;
        }

        .dpad-vertical {
          width: 18px;
          height: 44px;
        }

        .dpad-horizontal {
          width: 44px;
          height: 18px;
        }

        .dpad-button {
          width: 18px;
          height: 18px;
        }

        .action-button {
          width: 32px;
          height: 32px;
        }

        .action-button::after {
          width: 12px;
          height: 12px;
        }

      .features-section {
        padding: 4rem 0 3rem;
        min-height: 100vh;
      }

        .features-section h2 {
          font-size: var(--h2-size-mobile);
          margin-bottom: 1.5rem;
        }

        .feature {
          padding: 1.5rem;
        }

        .feature h3 {
          font-size: var(--h3-size-mobile);
        }

        .feature p {
          font-size: var(--p-size-mobile);
          line-height: var(--p-line-mobile);
        }

        .faq-section {
          padding: 3rem 0 4rem;
          min-height: 0;
        }

        .faq-section h2 {
          font-size: var(--h2-size-mobile);
          margin-bottom: 1.5rem;
        }

        .faq-question {
          padding: 1rem;
        }

        .faq-question h3 {
          font-size: 0.95rem;
        }

        .faq-item.active .faq-answer {
          padding: 0 1rem 1rem;
        }

        .faq-answer p {
          font-size: 0.85rem;
        }

        .custom-scrollbar {
          right: 8px;
        }

        .scroll-step {
          width: 8px;
          height: 8px;
        }

        .scroll-connector {
          right: 3px;
          width: 1.5px;
        }

        footer {
          padding: 2rem 0;
          min-height: 0;
        }

        footer .cta-section {
          margin-bottom: 1.5rem;
        }

        footer p {
          font-size: 0.85rem;
          margin-bottom: 0.75rem;
        }

        .footer-links {
          gap: 0.75rem;
          margin-top: 1rem;
        }

        .footer-links a {
          font-size: 0.8rem;
        }
      }

      /* Extra small devices */
      @media (max-width: 480px) {
        .hero h1 {
          font-size: 1.5rem;
        }

        .hero p {
          font-size: var(--p-size-xs);
        }

        .content-section h2,
        .features-section h2,
        .faq-section h2 {
          font-size: var(--h2-size-xs);
        }

        .section-logo img {
          height: 80px;
          width: 80px;
        }

        .retro-screen {
          width: 120px;
          height: 50px;
        }

        .screen-text {
          font-size: 0.7rem;
        }

        .cta-button {
          padding: 0.9rem 1.25rem;
          font-size: 0.9rem;
        }

        .feature {
          padding: 1.25rem;
        }

        .feature h3 {
          font-size: var(--h3-size-xs);
        }

        .feature p {
          font-size: var(--p-size-xs);
        }

        .faq-question {
          padding: 0.875rem;
        }

        .faq-question h3 {
          font-size: 0.9rem;
        }
      }

      /* Decorative elements */
      .decoration {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        filter: blur(60px);
        z-index: 0;
      }

      .decoration-1 {
        background: rgba(220, 10, 45, 0.3);
      }

      .decoration-2 {
        background: rgba(74, 158, 255, 0.3);
      }

      main {
        position: relative;
        z-index: 1;
      }

      /* Smooth scroll animations */
      @media (prefers-reduced-motion: no-preference) {
        html {
          scroll-behavior: smooth;
        }
      }

      .skip-link:focus {
        left: 1rem;
        top: 1rem;
        background: #dc0a2d;
        color: #fff;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        text-decoration: none;
        z-index: 9999;
      }
