body {
    background: linear-gradient(135deg, #fceab1 0%, #f0e892 60%, #e5d675 80%, #d4c95e 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-custom {
    background: rgba(252, 242, 201, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(228, 214, 133, 0.3);
}

.download-container {
    padding: 2rem 0;
}

.header-card {
    background: rgba(252, 242, 201, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid rgba(228, 214, 133, 0.3);
}

.header-icon {
    font-size: 4rem;
    background: linear-gradient(45deg, #abbe32, #9db02a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.header-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.header-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.download-card {
    background: rgba(252, 242, 201, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
    border: 1px solid rgba(228, 214, 133, 0.3);
    position: relative;
}

.download-card:hover {
    transform: translateY(-5px);
}

.download-card.available:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.download-card.coming-soon {
    opacity: 0.7;
    position: relative;
}

.download-card.coming-soon::before {
    content: "Coming Soon";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ffc107, #e0a800);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #abbe32, #9db02a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-icon.android {
    background: linear-gradient(45deg, #3ddc84, #1db954);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-icon.windows {
    background: linear-gradient(45deg, #0078d4, #106ebe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-icon.macos {
    background: linear-gradient(45deg, #8e8e93, #6d6d70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-icon.linux {
    background: linear-gradient(45deg, #fcc624, #e6ac00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.platform-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.platform-details {
    background: rgba(248, 240, 195, 0.5);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(228, 214, 133, 0.2);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.btn-download {
    background: linear-gradient(45deg, #abbe32, #9db02a);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
}

.btn-download:hover {
    background: linear-gradient(45deg, #9db02a, #8a9e25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(171, 190, 50, 0.3);
    color: white;
    text-decoration: none;
}

.btn-download:active {
    transform: translateY(0);
}

.btn-coming-soon {
    background: linear-gradient(45deg, #6c757d, #5a6268);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
    opacity: 0.7;
}

.download-icon {
    font-size: 1.2rem;
}

.file-size {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}




/* Responsive design */
@media (max-width: 768px) {
    .download-container {
        padding: 1rem 0.5rem;
    }

    .header-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .header-title {
        font-size: 2rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .download-card {
        padding: 2rem;
    }

    .platform-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .platform-name {
        font-size: 1.5rem;
    }

    .btn-download,
    .btn-coming-soon {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-card {
        padding: 1.5rem;
    }

    .header-title {
        font-size: 1.8rem;
    }

    .download-card {
        padding: 1.5rem;
    }

    .platform-icon {
        font-size: 2.5rem;
    }

    .platform-name {
        font-size: 1.3rem;
    }

    .detail-label,
    .detail-value {
        font-size: 0.8rem;
    }
}
