:root {
      --font-display: 'Orbitron', sans-serif;
      --font-body: 'Inter', sans-serif;

      --bg-base: #000000;
      --accent-purple: #8b5cf6;
      --accent-blue: #3b82f6;
      --accent-purple-glow: rgba(139, 92, 246, 0.4);
      --accent-blue-glow: rgba(59, 130, 246, 0.3);

      --glass-bg: rgba(6, 6, 12, 0.65);
      --glass-border: rgba(255, 255, 255, 0.08);
      --text-primary: #ffffff;
      --text-secondary: #94a3b8;
      --text-muted: #475569;
    }

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

    body {
      font-family: var(--font-body);
      background-color: var(--bg-base);
      color: var(--text-primary);
      overflow-x: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }

    
    .custom-cursor-dot {
      width: 6px;
      height: 6px;
      background: var(--text-primary);
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      transform: translate(-50%, -50%);
      transition: width 0.2s, height 0.2s;
    }

    .custom-cursor-ring {
      width: 34px;
      height: 34px;
      border: 1.5px solid var(--accent-purple);
      box-shadow: 0 0 8px var(--accent-purple-glow);
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.08s ease-out, border-color 0.2s;
    }

    
    @media (max-width: 1024px) {
      * {
        cursor: auto !important;
      }

      .custom-cursor-dot,
      .custom-cursor-ring {
        display: none !important;
      }
    }

    
    #backgroundCanvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -3;
      background: #000;
    }

    
    .purple-fog {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, rgba(0, 0, 0, 0) 70%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.04) 0%, rgba(0, 0, 0, 0) 50%);
      pointer-events: none;
    }

    
    .scanlines {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      background: linear-gradient(rgba(18, 16, 16, 0) 50%,
          rgba(0, 0, 0, 0.3) 50%);
      background-size: 100% 4px;
      pointer-events: none;
    }

    
    .animated-scanline {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--accent-purple), var(--accent-blue), transparent);
      opacity: 0.12;
      z-index: 10;
      pointer-events: none;
      animation: scanlineMove 8s linear infinite;
    }

    
    .mouse-glow {
      position: fixed;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, rgba(59, 130, 246, 0.02) 40%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: -1;
      transform: translate(-50%, -50%);
      will-change: left, top;
    }

    
    .card-banner {
      width: calc(100% + 8rem);
      margin: -4rem -4rem 2.5rem -4rem;
      overflow: hidden;
      border-radius: 14px 14px 0 0;
      flex-shrink: 0;
    }

    .card-banner img {
      width: 100%;
      height: auto;
      max-height: 340px;
      object-fit: cover;
      display: block;
      border: none;
    }

    @media (max-width: 768px) {
      .card-banner {
        width: calc(100% + 3rem);
        margin: -2.5rem -1.5rem 2rem -1.5rem;
        border-radius: 12px 12px 0 0;
      }
      .card-banner img {
        max-height: 200px;
      }
    }

    @media (max-width: 480px) {
      .card-banner {
        width: calc(100% + 2rem);
        margin: -2rem -1rem 1.5rem -1rem;
        border-radius: 10px 10px 0 0;
      }
      .card-banner img {
        max-height: 150px;
      }
    }

    .layout {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 5;
      align-self: center;
    }

    @media (max-width: 768px) {
      .layout {
        padding: 0 1rem;
      }
    }

    .hero {
      min-height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem 0 3rem;
      width: 100%;
    }

    @media (max-width: 768px) {
      .hero {
        min-height: auto;
        padding: 1.5rem 0 2rem;
      }
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.025);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      width: 100%;
      max-width: 1160px;
      padding: 4rem 4rem;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25),
        0 0 60px rgba(139, 92, 246, 0.07);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: border-color 0.5s, box-shadow 0.5s;
    }

    @media (max-width: 768px) {
      .hero-card {
        padding: 2.5rem 1.5rem;
        border-radius: 14px;
      }
    }

    @media (max-width: 480px) {
      .hero-card {
        padding: 2rem 1rem;
        border-radius: 12px;
      }
    }

    .hero-card:hover {
      border-color: rgba(139, 92, 246, 0.25);
      box-shadow: 0 12px 50px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(139, 92, 246, 0.1);
    }

    
    .hero-card::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 30%;
      height: 200%;
      background: linear-gradient(to right,
          transparent,
          rgba(255, 255, 255, 0.08) 50%,
          transparent);
      transform: rotate(25deg);
      pointer-events: none;
      animation: cardShine 8s infinite ease-in-out;
    }

    
    .logo-img-container {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .official-logo {
      width: auto;
      height: 90px;
      max-width: 360px;
      object-fit: contain;
      filter: drop-shadow(0 0 18px rgba(139, 92, 246, 0.5)) drop-shadow(0 4px 12px rgba(0,0,0,0.6));
      animation: logoPulse 4s ease-in-out infinite;
    }

    @media (max-width: 768px) {
      .official-logo {
        height: 70px;
        max-width: 260px;
      }
    }

    @media (max-width: 480px) {
      .official-logo {
        height: 55px;
        max-width: 200px;
      }
    }

    @keyframes logoPulse {
      0%, 100% { filter: drop-shadow(0 0 14px rgba(139, 92, 246, 0.4)) drop-shadow(0 4px 12px rgba(0,0,0,0.6)); }
      50% { filter: drop-shadow(0 0 28px rgba(139, 92, 246, 0.75)) drop-shadow(0 4px 16px rgba(0,0,0,0.7)); }
    }

    .headline {
      font-size: 1.45rem;
      font-weight: 600;
      line-height: 1.5;
      color: #fff;
      margin-bottom: 1rem;
      font-family: var(--font-body);
      max-width: 700px;
      min-height: 2.2em;
    }

    .typewriter-text .at-mark {
      color: #ff2d55;
      font-weight: 900;
      text-shadow: 0 0 12px rgba(255, 45, 85, 0.8), 0 0 28px rgba(255, 45, 85, 0.5);
      animation: atPulse 1.2s ease-in-out infinite;
      display: inline-block;
    }

    @keyframes atPulse {
      0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 45, 85, 0.7), 0 0 24px rgba(255, 45, 85, 0.4);
      }
      50% {
        transform: scale(1.25);
        text-shadow: 0 0 20px rgba(255, 45, 85, 1), 0 0 44px rgba(255, 45, 85, 0.7), 0 0 70px rgba(255, 0, 50, 0.4);
      }
    }

    .typewriter-cursor {
      display: inline-block;
      color: #a78bfa;
      font-weight: 300;
      animation: blink 0.75s step-end infinite;
      margin-left: 2px;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    @media (max-width: 768px) {
      .headline {
        font-size: 1.15rem;
        max-width: 100%;
      }
    }

    @media (max-width: 480px) {
      .headline {
        font-size: 1rem;
      }
    }

    .subheadline {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.65;
      margin-bottom: 2.5rem;
      max-width: 600px;
    }

    @media (max-width: 768px) {
      .subheadline {
        font-size: 0.88rem;
        margin-bottom: 2rem;
        max-width: 100%;
      }
    }

    
    .cta-group {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 1.5rem;
      width: 100%;
      max-width: 700px;
      margin-bottom: 2.5rem;
    }

    @media (max-width: 640px) {
      .cta-group {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
        gap: 1rem;
        margin-bottom: 2rem;
      }
    }

    .btn {
      width: auto;
      min-width: 220px;
      padding: 1rem 1.8rem;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-radius: 12px;
      border: none;
      cursor: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 640px) {
      .btn {
        width: 100%;
        min-width: unset;
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
      }
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
      transition: 0.5s;
    }

    .btn:hover::before {
      left: 100%;
    }

    .btn-glow-purple {
      background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
      color: #fff;
      box-shadow: 0 4px 20px var(--accent-purple-glow);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-glow-purple:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .btn-glow-purple:active {
      transform: translateY(0);
    }

    .btn-border-glow {
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-primary);
      border: 1px solid var(--glass-border);
    }

    .btn-border-glow:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--accent-purple);
      box-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
      transform: translateY(-2px);
    }

    .badges-container {
      display: flex;
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      width: 100%;
    }

    @media (max-width: 600px) {
      .badges-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
      }
    }

    .badge-item {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      color: var(--text-secondary);
      font-weight: 500;
      text-align: left;
    }

    .badge-item svg {
      width: 14px;
      height: 14px;
      color: var(--accent-blue);
      flex-shrink: 0;
      filter: drop-shadow(0 0 3px var(--accent-blue-glow));
    }

    
    .stats-container {
      margin-top: 3.5rem;
      display: flex;
      justify-content: space-around;
      width: 100%;
      max-width: 800px;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 1.5rem 2rem;
      flex: 1;
      min-width: 200px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s;
    }

    .stat-item:hover {
      transform: translateY(-4px);
      border-color: rgba(59, 130, 246, 0.25);
    }

    .stat-val {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.4rem;
      background: linear-gradient(90deg, #fff, var(--accent-blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .stat-desc {
      font-size: 0.85rem;
      color: var(--text-secondary);
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    
    .features-section {
      width: 100%;
      padding: 6rem 0;
    }

    .section-title-wrapper {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-title-wrapper h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #fff 40%, var(--accent-purple) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .section-title-wrapper p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      max-width: 500px;
      margin: 0 auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      width: 100%;
    }

    .feature-card {
      background: var(--glass-bg);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 2.2rem 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      border-color: rgba(139, 92, 246, 0.3);
      box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
    }

    .feature-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(139, 92, 246, 0.1);
      border: 1px solid rgba(139, 92, 246, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      color: var(--accent-purple);
      transition: all 0.3s;
    }

    .feature-card:hover .feature-icon-box {
      background: var(--accent-purple);
      color: #fff;
      box-shadow: 0 0 15px var(--accent-purple-glow);
      transform: scale(1.05);
    }

    .feature-icon-box svg {
      width: 24px;
      height: 24px;
    }

    .feature-card h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
      color: #fff;
      letter-spacing: 0.05em;
    }

    .feature-card p {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    
    footer {
      width: 100%;
      padding: 3rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      margin-top: auto;
    }

    footer p {
      font-size: 0.8rem;
      color: var(--text-muted);
      letter-spacing: 0.05em;
    }

    
    .fade-in-element {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-in-element.visible {
      opacity: 1;
      transform: translateY(0);
    }

    
    @keyframes scanlineMove {
      0% {
        top: -2px;
      }

      100% {
        top: 100%;
      }
    }

    @keyframes cardShine {
      0% {
        left: -60%;
      }

      50% {
        left: 160%;
      }

      100% {
        left: 160%;
      }
    }