.download-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: #000000;
  }

  .download-container {
    max-width: 1600px;
    width: 100%;
  }

  .download-title {
    font-family: 'Inter', ui-sans-serif, system-ui;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
  }

  .download-subtitle {
    font-family: 'Jost', ui-sans-serif, system-ui;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 50px;
    line-height: 1.6;
  }

  .countdown-container {
    text-align: left;
    margin: 60px 0 50px;
  }

  .countdown-title {
    font-family: 'Inter', ui-sans-serif, system-ui;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px;
  }

  .countdown-timer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
  }

  .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
  }

  .countdown-value {
    font-family: 'Inter', ui-sans-serif, system-ui;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #0572FF;
    line-height: 1;
    background: linear-gradient(135deg, #0572FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .countdown-label {
    font-family: 'Jost', ui-sans-serif, system-ui;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: lowercase;
  }

  .countdown-separator {
    font-family: 'Inter', ui-sans-serif, system-ui;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-top: -20px;
  }

  .countdown-complete {
    font-family: 'Inter', ui-sans-serif, system-ui;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0572FF;
    text-align: center;
  }

  .download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    font-family: 'Inter', ui-sans-serif, system-ui;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    margin-bottom: 30px;
  }

  .download-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .download-button i {
    font-size: 20px;
  }

  .download-info-title {
    font-family: 'Inter', ui-sans-serif, system-ui;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px;
  }

  .download-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }

  .download-feature {
    text-align: left;
  }

  .download-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 95, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .download-feature-icon i {
    font-size: 24px;
    color: #255FFFFF;
  }

  .download-feature-title {
    font-family: 'Inter', ui-sans-serif, system-ui;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px;
  }

  .download-feature-desc {
    font-family: 'Jost', ui-sans-serif, system-ui;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
  }

  .download-requirements {
    margin-top: 40px;
  }

  .download-requirements-title {
    font-family: 'Inter', ui-sans-serif, system-ui;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px;
  }

  .download-requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }

  .download-requirements-list li {
    font-family: 'Jost', ui-sans-serif, system-ui;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
  }

  .download-requirements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #255FFFFF;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .download-page {
      padding: 100px 20px 40px;
    }

    .download-features {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .download-button {
      padding: 18px 36px;
      font-size: 16px;
      width: 100%;
      max-width: 400px;
    }

    .countdown-container {
      margin: 40px 0 30px;
    }

    .countdown-item {
      min-width: 60px;
    }

    .countdown-separator {
      margin-top: -15px;
    }
    
    .countdown-timer {
      gap: 4px;
    }
  }