@import url('https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000;
    background-color: #F0F0F0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.logo-text {
    font-weight: 700;
    font-size: 24px;
    color: #000;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FFD700;
    color: #1A1A2E;
    border: 2px solid #FFD700;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
}

.nav-button:hover {
    background-color: #FFC300;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 195, 0, 0.3);
}

.nav-button:active {
    transform: translateY(0);
}

section.downloads {
    padding: 160px 0 80px;
    background: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #FFD700;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1A1A2E;
}

.download-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 20px 0;
}

.download-card {
    background: #F9F9F9;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--delay) * 0.1s);
    border: 1px solid rgba(0,0,0,0.05);
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.download-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.download-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A2E;
}

.download-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.download-btn {
    background: #FFD700;
    color: #1A1A2E;
    padding: 15px 30px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.download-btn:hover {
    background: #FFC300;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 195, 0, 0.4);
}

.download-btn:active {
    transform: translateY(0);
}

.download-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.download-btn:hover i {
    transform: translateY(-3px);
}

.download-btn.disabled.coming-soon {
    background: #FFD700;
    color: #1A1A2E;
    cursor: not-allowed;
}

.download-btn.disabled.coming-soon:hover {
    background: #FFC300;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 195, 0, 0.4);
}

.download-btn.disabled {
    background: #e0e0e0;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
}

/* FOOTER STYLES */
footer {
    background: #1A1A2E;
    color: white;
    text-align: center;
    padding: 40px 0;
}

footer p {
    margin: 15px 0;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #FFD700;
    transform: scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .download-card {
        width: 280px;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .download-card {
        width: 100%;
        max-width: 350px;
    }
    
    section.downloads {
        padding-top: 180px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .download-btn {
        padding: 12px 24px;
    }
}