.download-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.download-header {
    text-align: center;
    margin-bottom: 50px;
}

.download-header h1 {
    font-size: 2.5em;
    color: #00f7ff;
    text-shadow: 0 0 20px rgba(0, 247, 255, 0.5);
    margin-bottom: 15px;
}

.download-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2em;
}

.download-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.download-card {
    background: rgba(0, 10, 20, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(0, 247, 255, 0.3);
    padding: 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 247, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
}

.download-icon {
    text-align: center;
    margin-bottom: 30px;
}

.download-icon img {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 10px rgba(0, 247, 255, 0.3));
}

.download-info h2 {
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.system-req {
    list-style: none;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    margin: 0 auto 30px;
}

.system-req li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.system-req li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00f7ff;
    font-size: 1.2em;
}

.download-actions {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.download-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 400px;
}

.download-button.primary {
    background: linear-gradient(45deg, #00f7ff, #0088ff);
    color: #000;
}

.download-button.secondary {
    background: transparent;
    border: 2px solid #00f7ff;
    color: #00f7ff;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.4);
}

.download-button.primary:hover {
    background: linear-gradient(45deg, #0088ff, #00f7ff);
}

.download-button.secondary:hover {
    background: rgba(0, 247, 255, 0.1);
}

.size {
    font-size: 0.9em;
    opacity: 0.8;
}

.version {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    margin-top: 10px;
}

/* Installation Guide */
.install-guide {
    padding: 40px;
    background: rgba(0, 10, 20, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(0, 247, 255, 0.2);
}

.install-guide h2 {
    color: #00f7ff;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 247, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(0, 247, 255, 0.1);
    transform: translateY(-3px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00f7ff, #0088ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    color: #000;
}

.step-content h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .download-section {
        padding: 30px 15px;
    }

    .download-header h1 {
        font-size: 2em;
    }

    .download-card {
        padding: 30px 20px;
    }

    .download-button {
        padding: 12px 30px;
    }

    .guide-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .download-header h1 {
        font-size: 1.8em;
    }

    .system-req li {
        font-size: 0.9em;
    }

    .download-button {
        font-size: 0.9em;
        padding: 10px 25px;
    }
}