/* Dark Theme Styles - Override all other styles */
:root {
    --primary-dark: #121212;
    --electric-purple: #9D4EDD;
    --vibrant-green: #00FF9D;
    --primary-light: #6A0DAD;
    --accent-light: #B19CD9;
    --text-light: #F9FAFB;
}

html, body {
    background-color: var(--primary-dark) !important;
    color: var(--text-light) !important;
}

.page-wrapper {
    background-color: var(--primary-dark) !important;
    min-height: 100vh;
}

/* Download Header Section */
.download-header {
    background-color: var(--primary-dark) !important;
    background-image: none !important;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1) !important;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

.download-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(157, 78, 221, 0.15) 0%, 
        transparent 20%, 
        rgba(0, 255, 157, 0.05) 50%,
        transparent 80%, 
        rgba(157, 78, 221, 0.15) 100%
    ) !important;
    z-index: 1;
}

/* Footer Styles */
footer {
    background-color: rgba(18, 18, 18, 0.95) !important;
    border-top: 1px solid rgba(157, 78, 221, 0.2) !important;
}

.footer-nav a {
    color: var(--text-light) !important;
    transition: color 0.3s ease !important;
}

.footer-nav a:hover {
    color: var(--electric-purple) !important;
    text-decoration: none !important;
}

.copyright {
    color: rgba(249, 250, 251, 0.7) !important;
}

.download-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, var(--electric-purple) 1px, transparent 1px) !important;
    background-size: 30px 30px !important;
    opacity: 0.05;
    z-index: 1;
}

/* Section Headers */
.section-header h1,
.section-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.section-tag {
    color: var(--vibrant-green) !important;
    background: rgba(0, 255, 157, 0.1) !important;
}

/* Download Options Section */
.download-options {
    background-color: var(--primary-dark) !important;
    background-image: none !important;
    position: relative;
}

.option-card {
    background: rgba(18, 18, 18, 0.6) !important;
    border: 1px solid rgba(157, 78, 221, 0.1) !important;
    backdrop-filter: blur(10px);
}

.option-card.primary {
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.15) 0%, 
        rgba(0, 255, 157, 0.05) 100%
    ) !important;
    border: 1px solid rgba(157, 78, 221, 0.2) !important;
}

.option-features li {
    color: var(--text-light) !important;
}

.option-features li i {
    color: var(--vibrant-green) !important;
}

/* Version Info */
.version-badge, 
.release-date {
    background: rgba(157, 78, 221, 0.1) !important;
    border: 1px solid rgba(157, 78, 221, 0.2) !important;
}

.version-badge i, 
.release-date i {
    color: var(--vibrant-green) !important;
}

/* Installation Guide Section */
.installation-guide {
    background-color: var(--primary-dark) !important;
    background-image: none !important;
    position: relative;
    border-top: 1px solid rgba(157, 78, 221, 0.1) !important;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: rgba(18, 18, 18, 0.6) !important;
    border: 1px solid rgba(157, 78, 221, 0.1) !important;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 78, 221, 0.3) !important;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.1);
}

.step-number {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(0, 255, 157, 0.2)) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--vibrant-green) !important;
    border: 1px solid rgba(157, 78, 221, 0.2) !important;
}

.step-card h3 {
    color: var(--vibrant-green) !important;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light) !important;
    opacity: 0.9;
}

/* Download Statistics Section */
.download-stats {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%) !important;
    border-top: 1px solid rgba(157, 78, 221, 0.1) !important;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1) !important;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(18, 18, 18, 0.6) !important;
    border: 1px solid rgba(157, 78, 221, 0.1) !important;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 78, 221, 0.3) !important;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light) !important;
    font-size: 1rem;
    opacity: 0.9;
}

/* Cookie Banner */
.cookie-banner {
    background: rgba(18, 18, 18, 0.95) !important;
    border-top: 1px solid rgba(157, 78, 221, 0.1) !important;
    backdrop-filter: blur(10px);
}

.cookie-banner h4 {
    color: var(--vibrant-green) !important;
}

.cookie-banner p {
    color: var(--text-light) !important;
}
