/* Download Page CSS */
.download-page {
    background: url("../images/download-bg.jpg") center center / cover no-repeat;
    background-color: #0d1a1f;
  }
  
  .download-main {
    padding: 0;
  }
  
  .download-hero {
    padding: 3rem 0;
  }
  
  .download-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .download-icon {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
  }
  
  .download-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .download-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
  }
  
  .download-main-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 3rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    transition: background-color 0.2s;
    text-align: center;
  }
  
  .download-main-button:hover {
    background-color: var(--primary-hover);
  }
  
  .download-version {
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 0.25rem;
  }
  
  .download-alt-link {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .download-alt-link a {
    color: var(--primary);
    text-decoration: none;
  }
  
  .download-alt-link a:hover {
    text-decoration: underline;
  }
  
  .install-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .install-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .install-step {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.25rem;
    padding: 1.5rem;
    text-align: center;
  }
  
  .step-image {
    position: relative;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  .step-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 0.25rem;
  }
  
  .step-number {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    background-color: var(--primary);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  
  .step-title {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .step-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  .game-description {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3rem 0;
  }
  
  .game-content {
    display: flex;
    flex-direction: column;
  }
  
  .game-image {
    margin-bottom: 2rem;
  }
  
  .characters-image {
    width: 100%;
    height: auto;
  }
  
  .game-text {
    color: white;
  }
  
  .game-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .game-text p {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
  
  .download-cta {
    margin-top: 1.5rem;
  }
  
  .download-features {
    padding: 3rem 0;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.25rem;
    overflow: hidden;
    text-align: center;
  }
  
  .feature-image {
    width: 100%;
    height: auto;
  }
  
  .feature-title {
    color: white;
    font-weight: 700;
    padding: 1rem;
    font-size: 0.875rem;
  }
  
  .feature-button {
    display: block;
    background-color: #333;
    color: white;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    transition: background-color 0.2s;
  }
  
  .feature-button:hover {
    background-color: #444;
  }
  
  .footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
  }
  
  .ratings {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .rating-icon {
    height: 40px;
    width: auto;
  }
  
  /* Responsive */
  @media (min-width: 768px) {
    .install-steps {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .game-content {
      flex-direction: row;
      align-items: center;
    }
  
    .game-image {
      width: 40%;
      margin-bottom: 0;
      margin-right: 2rem;
    }
  
    .game-text {
      width: 60%;
    }
  
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .footer-legal {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .ratings {
      margin-top: 0;
    }
  }
  
  @media (min-width: 992px) {
    .download-title {
      font-size: 2rem;
    }
  
    .game-title {
      font-size: 1.75rem;
    }
  }