/* Background Styles */
body {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Download Container dengan efek glassmorphism */
.download-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
    position: relative;
}

.download-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    z-index: -1;
}

.download-container h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
}

/* Section Styling dengan efek glassmorphism */
.requirements-section,
.download-links,
.install-guide,
.troubleshoot {
    background: rgba(42, 42, 42, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.requirements-section h2,
.download-links h2,
.install-guide h2,
.troubleshoot h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
    padding-bottom: 0.5rem;
}

/* Download Cards dengan efek hover */
.download-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.2);
}

.download-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: 0.8rem 1.5rem;
    color: white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-container {
        margin-top: 80px;
        padding: 0 15px;
    }

    .requirements-section,
    .download-links,
    .install-guide,
    .troubleshoot {
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* System Requirements */
.requirements-section {
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.req-item {
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.req-item:hover {
    transform: translateY(-5px);
}

.req-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Download Links */
.download-links {
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.download-card {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.download-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.download-card ul {
    list-style: none;
}

.download-card li {
    margin-bottom: 1rem;
}

.download-btn {
    display: block;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

/* Installation Guide */
.install-guide {
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    position: relative;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Troubleshooting */
.troubleshoot {
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 15px;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-container {
        margin-top: 80px;
    }

    .requirements-grid,
    .download-options,
    .guide-steps {
        grid-template-columns: 1fr;
    }

    .step {
        padding-top: 3rem;
    }
}