/* Download */
.download-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(80vh - 96px);
    padding: 2.4rem;
}

.app-tile {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3.6rem;
    border-radius: 19px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.download-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 2.4rem;
}

.app-tile h1 {
    font-size: 3rem;
    margin-bottom: 2.4rem;
}

.download-button {
    display: inline-block;
    background-color: var(--main-color);
    color: white;
    padding: 1.2rem 2.4rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.44rem;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #f47a38;
}

.update-date {
    margin-top: 2.4rem;
    color: #666666;
    font-size: 1.08rem;
}

/* Add to download.css */

/* Mobile Navigation - Same as index.css */
header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

nav {
  transition: all 0.3s ease;
}

nav ul {
  display: flex;
  gap: 1.5rem;
}

/* Mobile styles - Updated to 900px breakpoint */
@media (max-width: 900px) {
  /* Adjust download container */
  .download-container {
    padding: 1.5rem;
    min-height: calc(90vh - 96px);
  }
  
  .app-tile {
    padding: 2.4rem;
  }
  
  .download-logo {
    width: 150px;
    height: 150px;
  }
  
  .app-tile h1 {
    font-size: 2.4rem;
  }
  
  /* Hamburger menu styles */
  .hamburger {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 5rem 2rem;
    transition: right 0.3s ease;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* Transform hamburger to X when active */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 480px) {
  /* Further adjustments for very small screens */
  .download-container {
    padding: 1rem;
  }
  
  .app-tile {
    padding: 1.8rem;
  }
  
  .download-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.8rem;
  }
  
  .app-tile h1 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
  }
  
  .download-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
  }
  
  .update-date {
    margin-top: 1.8rem;
    font-size: 0.9rem;
  }
}