/* ================================
   DOWNLOADS - MODERN DESIGN V1
   Account Management Style
   ================================ */

:root {
    --primary-bg: #0f141a;
    --secondary-bg: #1a2332;
    --border-color: #2a3440;
    --accent-cyan: #00ffaa;
    --text-light: #e6f8ff;
    --text-muted: #a8b3c2;
    --error-red: #ff4444;
    --success-green: #7AF972;
    --warning-yellow: #F9F572;
    --download-blue: #4a90e2;
}

/* ================================
   CONTAINER & LAYOUT
   ================================ */

.downloads-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ================================
   HEADER
   ================================ */

.downloads-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a2332 0%, #0f141a 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.downloads-logo {
    font-size: 64px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 170, 0.3));
}

.downloads-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 12px 0;
    text-shadow: 0 2px 10px rgba(0, 255, 170, 0.2);
}

.downloads-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ================================
   INFO BOX
   ================================ */

.info-box {
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.1) 0%, rgba(0, 255, 170, 0.05) 100%);
    border: 1px solid rgba(0, 255, 170, 0.2);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 255, 170, 0.5));
}

.info-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.info-text strong {
    color: var(--accent-cyan);
}

/* ================================
   DOWNLOAD CARD
   ================================ */

.download-card {
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 255, 170, 0.2);
    border-color: var(--accent-cyan);
}

.download-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #1a2332 0%, #141c28 100%);
    border-bottom: 2px solid var(--border-color);
}

.download-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 170, 0.4));
}

.download-content {
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.download-image {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.download-card:hover .download-image {
    transform: scale(1.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 6px 25px rgba(0, 255, 170, 0.3);
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00cc88 100%);
    color: var(--primary-bg);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 170, 0.3);
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 170, 0.5);
    background: linear-gradient(135deg, #00cc88 0%, var(--accent-cyan) 100%);
}

.download-button-icon {
    font-size: 20px;
}

/* ================================
   DISCLAIMER
   ================================ */

.disclaimer-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 30px;
}

.disclaimer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--warning-yellow);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ================================
   STATS GRID
   ================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #1a2332 0%, #141c28 100%);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 170, 0.15);
    border-color: var(--accent-cyan);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 170, 0.3));
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-scale {
    animation: fadeInScale 0.4s ease-out;
}

.download-card {
    animation: slideInUp 0.5s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.download-card:nth-child(1) { animation-delay: 0s; }
.download-card:nth-child(2) { animation-delay: 0.1s; }
.download-card:nth-child(3) { animation-delay: 0.2s; }

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media screen and (max-width: 1024px) {
    .downloads-container {
        padding: 16px;
    }
    
    .downloads-header {
        padding: 30px 16px;
    }
    
    .downloads-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .downloads-title {
        font-size: 26px;
    }
    
    .downloads-subtitle {
        font-size: 14px;
    }
    
    .download-header {
        padding: 16px 20px;
    }
    
    .download-title {
        font-size: 20px;
    }
    
    .download-content {
        padding: 30px 20px;
    }
    
    .download-image {
        width: 150px;
        height: 150px;
    }
    
    .download-button {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .downloads-container {
        padding: 12px;
    }
    
    .downloads-header {
        padding: 24px 12px;
    }
    
    .downloads-logo {
        font-size: 48px;
    }
    
    .downloads-title {
        font-size: 22px;
    }
    
    .downloads-subtitle {
        font-size: 13px;
    }
    
    .info-box {
        padding: 16px;
        gap: 12px;
    }
    
    .info-icon {
        font-size: 20px;
    }
    
    .info-text {
        font-size: 14px;
    }
    
    .download-card {
        margin-bottom: 20px;
    }
    
    .download-header {
        padding: 14px 16px;
    }
    
    .download-title {
        font-size: 18px;
    }
    
    .download-icon {
        font-size: 24px;
    }
    
    .download-content {
        padding: 24px 16px;
        gap: 20px;
    }
    
    .download-image {
        width: 120px;
        height: 120px;
    }
    
    .download-button {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .download-button-icon {
        font-size: 18px;
    }
    
    .disclaimer-box {
        padding: 16px;
    }
    
    .disclaimer-title {
        font-size: 16px;
    }
    
    .disclaimer-text {
        font-size: 13px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .stat-icon {
        font-size: 28px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}
