/* ==========================================================================
   5. OSTATNÝ OBSAH (VOP, FAQ, PROGRESS, NOVINY)
   ========================================================================== */

/* VOP & FAQ */
.legal-container { width: 100%; max-width: 900px; margin: 60px auto; padding: 40px; background: var(--bg-panel); border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.faq-container { width: 100%; max-width: 900px; margin: 60px auto; display: flex; flex-direction: column; gap: 15px; }
.legal-header { text-align: center; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 2px solid var(--border); }
.legal-header h1 { font-family: 'Oswald', sans-serif; font-size: 36px; color: white; text-transform: uppercase; margin-bottom: 10px; }
.legal-content { font-size: 15px; line-height: 1.8; color: #d4d4d8; }
.legal-content h2 { font-family: 'Oswald', sans-serif; font-size: 22px; color: white; margin: 40px 0 15px 0; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.legal-content h2::before { content: ''; display: block; width: 4px; height: 18px; background: var(--accent); }

/* VOP - Opravené pozadie pravidiel */
.highlight-box { 
    background: rgba(249, 115, 22, 0.1) !important; 
    border-left: 4px solid var(--accent) !important; 
    padding: 20px !important; 
    margin: 25px 0 !important; 
    border-radius: 0 8px 8px 0 !important; 
    color: #e4e4e7;
}
.highlight-box strong { color: white; font-weight: 800; }

details { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: 0.3s; }
summary { padding: 20px 25px; font-weight: 700; font-size: 16px; cursor: pointer; color: white; display: flex; justify-content: space-between; align-items: center; list-style: none; }
summary::after { content: '+'; color: var(--accent); font-size: 24px; font-weight: 400; transition: 0.3s transform; }
details[open] summary::after { content: '−'; transform: rotate(180deg); }
details[open] summary { border-bottom: 1px solid var(--border); color: var(--accent); }
.faq-content { padding: 20px 25px; color: var(--text-muted); font-size: 14px; line-height: 1.8; background: #09090b; }

/* PRIPRAVUJEME (Opravená ikonka a animácie) */
.coming-soon-container { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 100px 20px; text-align: center; min-height: 50vh; }
.icon-wrapper { 
    width: 120px; height: 120px; 
    background: rgba(249, 115, 22, 0.05); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    margin-bottom: 35px; border: 1px dashed rgba(249, 115, 22, 0.3); 
    animation: pulseOrange 2s infinite; 
}
.icon-wrapper svg { width: 50px; height: 50px; color: var(--accent); animation: spin 8s linear infinite; }
.coming-soon-title { font-family: 'Oswald', sans-serif; font-size: clamp(36px, 5vw, 48px); text-transform: uppercase; color: white; margin-bottom: 15px; }
.coming-soon-title span { color: var(--accent); }
.btn-home { 
    background: var(--accent); color: white; padding: 14px 32px; border-radius: 8px; 
    font-weight: 700; font-size: 15px; transition: all 0.3s ease; text-transform: uppercase; 
    display: inline-block; border: 1px solid var(--accent);
}
.btn-home:hover { 
    background: var(--accent-hover); 
    transform: translateY(-4px); 
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.4); 
}

/* NOVINKY (Opravený grid aby sa nerozťahovali na max) */
.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-item { display: flex; gap: 20px; padding: 20px; background: var(--bg-panel); border: 1px solid var(--border); border-radius: 8px; transition: 0.2s; align-items: flex-start; }
.news-item:hover { border-color: rgba(255,255,255,0.1); background: #18181b; }
.news-img { width: 180px; height: 120px; background-size: cover; background-position: center; border-radius: 4px; flex-shrink: 0; }
.news-content { flex: 1; }
.news-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 8px; line-height: 1.3; }

.news-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    max-width: 1250px; 
    margin: 0 auto 60px auto; 
}
.news-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 16px; transition: 0.3s; display: flex; flex-direction: column; overflow: hidden; }
.news-card.featured { 
    grid-column: 1 / -1; /* Prvý článok zaberie celý riadok */
    display: grid; 
    grid-template-columns: 1.5fr 1fr; 
    align-items: center; 
}
.news-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.card-img-wrapper { width: 100%; height: 220px; overflow: hidden; background-color: #18181b;}
.news-card.featured .card-img-wrapper { height: 100%; min-height: 380px; }
.card-img { width: 100%; height: 100%; object-fit: cover !important; transition: transform 0.5s ease; }
.news-card:hover .card-img { transform: scale(1.05); }
.card-content { padding: 30px; display: flex; flex-direction: column; flex: 1; }

.reading-container { width: 100%; max-width: 800px; margin: 0 auto; padding: 40px 20px 100px; }
.article-hero-img { width: 100%; border-radius: 16px; margin-bottom: 50px; object-fit: cover; max-height: 450px; border: 1px solid var(--border); }
.article-body { font-size: 18px; line-height: 1.8; color: #e4e4e7; }
.article-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 30px 0; border: 1px solid var(--border); }

/* PROGRESS BAR A HARDWARE */
.progress-page { width: 100%; max-width: 1000px; margin: 0 auto; padding: 60px 20px; }
.progress-bar-container { background: var(--bg-panel); border: 1px solid var(--border); padding: 30px; border-radius: 16px; margin-bottom: 50px; }
.progress-track { width: 100%; height: 12px; background: var(--bg-dark); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.progress-fill { height: 100%; background: linear-gradient(90deg, #ea580c, #f97316, #fb923c); border-radius: 10px; width: 0%; }
.timeline-container { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 16px; padding: 40px; margin-bottom: 50px; }
.timeline { position: relative; padding-left: 30px; border-left: 2px solid var(--border); margin: 0 auto; max-width: 600px; }

.hw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-bottom: 60px; }
.hw-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; }
.hw-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.hw-banner { height: 260px; background-size: cover; background-position: center; position: relative; }
.hw-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-panel) 0%, transparent 100%); }
.hw-body { padding: 0 40px 40px; position: relative; z-index: 3; margin-top: -40px; flex: 1; display: flex; flex-direction: column; }

/* ANIMÁCIE */
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes fillProgress { from { width: 0%; } to { width: 48%; } }
@keyframes pulseOrange { 0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); } 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); } }

@media (max-width: 768px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
    .timeline-container { padding: 30px 20px; }
}