/* Download Page Styles */

.download-main {
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
    background: linear-gradient(135deg, #0a1a0a 0%, #000000 50%, #0a1a0a 100%);
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.download-hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.download-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    color: #d4af37;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 
        0 0 15px rgba(212, 175, 55, 1),
        0 0 30px rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.title-icon {
    font-size: 52px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    color: #cccccc;
    font-size: 20px;
    margin-bottom: 40px;
}

.version-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.version-badge,
.size-badge,
.date-badge {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 120px;
}

.version-label,
.size-label,
.date-label {
    color: #888888;
    font-size: 12px;
    text-transform: uppercase;
}

.version-number,
.size-number,
.date-number {
    color: #00ff00;
    font-size: 18px;
    font-weight: bold;
}

/* Download Section */
.download-section {
    margin-bottom: 60px;
}

.section-title {
    color: #d4af37;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.download-card {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
    border-color: #00ff00;
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.card-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.card-title {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.card-subtitle {
    color: #cccccc;
    font-size: 14px;
}

.card-body {
    flex: 1;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list li {
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-list li:last-child {
    border-bottom: none;
}

.download-info {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 15px;
}

.file-size,
.download-time {
    color: #00ff00;
    font-weight: bold;
    font-size: 14px;
}

.card-footer {
    margin-top: auto;
}

.download-btn {
    width: 100%;
    padding: 15px 25px;
    border: 3px solid #d4af37;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.download-btn.primary {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000000;
}

.download-btn.primary:hover {
    background: linear-gradient(135deg, #00cc00 0%, #00aa00 100%);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.download-btn.secondary {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    color: #d4af37;
}

.download-btn.secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.download-btn.accent {
    background: linear-gradient(135deg, #ffaa00 0%, #cc8800 100%);
    color: #000000;
}

.download-btn.accent:hover {
    background: linear-gradient(135deg, #cc8800 0%, #996600 100%);
    transform: scale(1.05);
}

.btn-icon {
    font-size: 20px;
}

.mirror-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mirror-link {
    color: #00ff00;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 10px;
    border: 1px solid #00ff00;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mirror-link:hover {
    background: rgba(0, 255, 0, 0.1);
    color: #d4af37;
    border-color: #d4af37;
}

/* Requirements Section */
.requirements-section {
    margin-bottom: 60px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.requirement-card {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.requirement-card.recommended {
    border-color: #00ff00;
}

.requirement-title {
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirement-card.recommended .requirement-title {
    color: #00ff00;
}

.req-icon {
    font-size: 28px;
}

.requirement-list {
    list-style: none;
}

.requirement-list li {
    color: #cccccc;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.requirement-list li:last-child {
    border-bottom: none;
}

.requirement-list strong {
    color: #d4af37;
}

/* Installation Section */
.installation-section {
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    border-color: #00ff00;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    border: 3px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.step-description {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 60px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.faq-text {
    color: #d4af37;
    font-size: 16px;
    font-weight: bold;
    flex: 1;
}

.faq-toggle {
    color: #00ff00;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px 70px;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

/* Support Section */
.support-section {
    margin-bottom: 40px;
}

.support-card {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.support-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.support-content {
    flex: 1;
}

.support-title {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 15px;
}

.support-text {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.support-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 12px 30px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: linear-gradient(135deg, #00cc00 0%, #00aa00 100%);
    transform: scale(1.05);
}

/* Active Nav Link */
.nav-link.active {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .support-card {
        flex-direction: column;
        text-align: center;
    }
}

