/* Download Page Styles */
.download-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.95)),
                url('/images/background-pattern.png');
    min-height: calc(100vh - 200px);
}

.download-content {
    padding: 2rem;
}

.download-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(40, 40, 40, 0.9));
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.download-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
}

.download-title {
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
    font-family: 'Cinzel', serif;
}

.download-badge {
    background: linear-gradient(45deg, #fff, #bbb);
    color: #111;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.detail-item:hover {
    transform: translateX(5px);
    background: rgba(212, 175, 55, 0.15);
}

.detail-item i {
    color: #fff;
    font-size: 1.2rem;
}

.download-actions {
    text-align: center;
    padding: 1rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.download-info {
    color: #fff;
    opacity: 0.8;
}

/* Requirements Cards */
.requirements-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.requirements-card:hover {
    transform: translateY(-3px);
}

.requirements-card h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    padding: 0.5rem 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirements-list li::before {
    content: "•";
    color: #fff;
    font-size: 1.2rem;
}

/* Installation Steps */
.installation-steps {
    padding: 1rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 3rem;
    bottom: -2rem;
    width: 2px;
    background: #fff;
    opacity: 0.3;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(45deg, #fff, #bbb);
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #fff;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .download-section {
        padding: 2rem 0;
    }

    .download-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .download-details {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .step:not(:last-child)::after {
        left: 1.5rem;
        top: 3rem;
        bottom: -1rem;
    }

    .step-number {
        margin-left: 0.5rem;
    }
}

/* Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.download-btn {
    animation: pulse 2s infinite;
}

.download-btn:hover {
    animation: none;
}

/* Replace gold/yellow with white for all download elements */
.ancient-form-title, .ancient-form-subtitle, .download-title, .download-details, .download-badge, .requirements-card, .requirements-list, .installation-steps, .step-content, .ancient-btn, .ancient-text, .lead {
    color: #fff !important;
    border-color: #fff !important;
}

.ancient-btn.btn-gold, .btn-primary {
    background: linear-gradient(135deg, #fff, #bbb) !important;
    color: #111 !important;
}

.ancient-btn.btn-gold:hover, .btn-primary:hover {
    background: linear-gradient(135deg, #bbb, #fff) !important;
    color: #111 !important;
} 