/* SQL2Excel 다운로드 페이지 스타일 (한국어) */

.downloads-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.downloads-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Noto Sans KR', sans-serif;
}

.downloads-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Noto Sans KR', sans-serif;
}

.downloads-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-family: 'Noto Sans KR', sans-serif;
}

.downloads-content {
    padding: 60px 0;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.file-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.file-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    font-family: 'Noto Sans KR', sans-serif;
}

.file-description {
    color: #718096;
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: 'Noto Sans KR', sans-serif;
}

.file-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #a0aec0;
}

.file-size {
    font-weight: 500;
}

.file-date {
    font-style: italic;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    font-family: 'Noto Sans KR', sans-serif;
}

.download-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.download-btn::after {
    content: '⬇️';
    font-size: 1.1rem;
}

.info-section {
    background: #f8fafc;
    padding: 40px 0;
    margin-top: 60px;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #4a5568;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Noto Sans KR', sans-serif;
}

.info-card p {
    color: #718096;
    line-height: 1.6;
    font-family: 'Noto Sans KR', sans-serif;
}

.no-files {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.no-files h3 {
    font-family: 'Noto Sans KR', sans-serif;
    margin-bottom: 10px;
}

.no-files p {
    font-family: 'Noto Sans KR', sans-serif;
}

.no-files-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* 한국어 텍스트 최적화 */
.solution-badge {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
}

.solution-actions .btn {
    font-family: 'Noto Sans KR', sans-serif;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .downloads-hero h1 {
        font-size: 2rem;
    }
    
    .downloads-stats {
        gap: 20px;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .file-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .file-name {
        font-size: 1.2rem;
    }
    
    .file-description {
        font-size: 0.9rem;
    }
}
