/* Download Page Styles */
:root {
    --download-primary: #6366f1;
    --download-secondary: #4cc9f0;
    --download-accent: #0ea5e9;
    --download-bg-dark: #0f172a;
    --download-bg-light: #1e293b;
    --download-text: #f8fafc;
    --download-text-secondary: rgba(248, 250, 252, 0.7);
    --download-border-glow: rgba(99, 102, 241, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at 50% 50%, var(--download-bg-light), var(--download-bg-dark));
    color: var(--download-text);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.download-page {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.download-container {
    max-width: 900px;
    width: 100%;
    background: rgba(15, 23, 42, 0.7);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px var(--download-border-glow);
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.download-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.download-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(
        to right, 
        #f8fafc 10%, 
        #6366f1 40%, 
        #4cc9f0 60%, 
        #f8fafc 90%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.download-info {
    margin: 20px 0;
}

.download-info p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--download-text-secondary);
}

.manual-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--download-primary), var(--download-secondary));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.manual-download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.installation-guide {
    margin: 40px 0;
}

.installation-guide h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.installation-guide h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--download-primary), var(--download-secondary));
    border-radius: 3px;
    box-shadow: 0 0 10px var(--download-primary);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 30px;
    height: calc(100% - 60px);
    width: 2px;
    background: linear-gradient(to bottom, var(--download-primary), rgba(99, 102, 241, 0.1));
    z-index: 0;
}

.step:last-child::after {
    display: none;
}

.step-number {
    background: linear-gradient(135deg, var(--download-primary), var(--download-secondary));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    z-index: 1;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--download-text);
}

.step-content p {
    color: var(--download-text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-image {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.download-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.download-footer p {
    color: var(--download-text-secondary);
    margin: 0;
}

.download-footer a {
    color: var(--download-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.download-footer a:hover {
    color: var(--download-text);
    text-decoration: underline;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--download-text) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .download-container {
        padding: 30px 20px;
    }
    
    .download-header h1 {
        font-size: 2rem;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    
    .step::after {
        display: none;
    }
    
    .step-content {
        width: 100%;
    }
    
    .download-footer {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
} 