/* Download Page Specific Styles */

/* Header Logo Link */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
}

.brand-name:hover {
    color: var(--text-primary);
}

/* Download Hero Section */
.download-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.download-container {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.download-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-family: 'Space Grotesk', sans-serif;
}

.download-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-cta {
    display: inline-block;
    background-color: var(--accent);
    color: var(--bg-primary);
    padding: 1.25rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.download-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25), 0 0 40px rgba(255, 255, 255, 0.1);
}

.download-details {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* SmartScreen Notice Section */
.smartscreen-notice {
    padding: 4rem 2rem;
    background-color: var(--bg-secondary);
}

.notice-container {
    max-width: 800px;
    margin: 0 auto;
}

.notice-card {
    background-color: rgba(26, 26, 30, 0.6);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.notice-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.notice-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
}

.notice-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.notice-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 32px;
    height: 32px;
    background-color: var(--accent);
    color: var(--bg-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.step-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 0.25rem;
}

.notice-footer {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border);
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-title {
        font-size: 2.5rem;
    }
    
    .download-subtitle {
        font-size: 1rem;
    }
    
    .download-cta {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .notice-card {
        padding: 2rem;
    }
    
    .notice-title {
        font-size: 1.25rem;
    }
    
    .notice-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .download-title {
        font-size: 2rem;
    }
    
    .download-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .notice-card {
        padding: 1.5rem;
    }
}
