/* FRESH-AI.news — Styles v1.0 */

:root {
    --bg: #0a0a0f;
    --bg-card: #13131a;
    --bg-elevated: #1a1a24;
    --text: #e4e4e9;
    --text-muted: #8888a0;
    --accent: #6c5ce7;
    --accent-glow: #a29bfe;
    --border: #2a2a3a;
    --radius: 12px;
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 24px 0 16px;
    text-align: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.logo-icon { font-size: 36px; }

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}
.logo-dot {
    color: var(--accent);
    text-shadow: 0 0 12px var(--accent-glow);
}

.tagline {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}
.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.2s;
}
.main-nav a:hover {
    color: var(--text);
    background: var(--bg-elevated);
}

/* Hero */
.hero {
    text-align: center;
    padding: 48px 0 32px;
}
.hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 12px;
}
.highlight {
    color: var(--accent);
    text-shadow: 0 0 18px var(--accent-glow);
}
.hero-sub {
    color: var(--text-muted);
    font-size: 16px;
}

/* Stats */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-glow);
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Tema Grid */
.tema-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}
@media (max-width: 700px) {
    .tema-grid { grid-template-columns: repeat(3, 1fr); }
}
.tema-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}
.tema-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.tema-icon { font-size: 28px; display: block; margin-bottom: 6px; }
.tema-name { font-size: 13px; }

/* Video Grid */
.video-section { padding-bottom: 40px; }
.video-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s;
}
.video-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.video-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    background: var(--bg-elevated);
    position: relative;
    text-decoration: none;
}
.play-icon {
    font-size: 40px;
    color: var(--accent);
    opacity: 0.8;
    transition: opacity 0.2s;
}
.video-thumb:hover .play-icon { opacity: 1; }
.video-tema {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.video-info {
    padding: 14px 16px;
}
.video-info h3 {
    font-size: 15px;
    margin-bottom: 8px;
}
.video-info h3 a {
    color: var(--text);
    text-decoration: none;
}
.video-info h3 a:hover { color: var(--accent-glow); }

.video-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    gap: 12px;
}
.video-stats {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    gap: 14px;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.empty-icon { font-size: 48px; display: block; margin-bottom: 16px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); max-width: 400px; margin: 0 auto 4px; }
.empty-hint { font-size: 13px; margin-top: 8px; }

/* How it works */
.about-preview {
    padding: 40px 0;
}
.about-preview h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 24px;
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 700px) {
    .how-grid { grid-template-columns: 1fr; }
}
.how-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}
.how-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.how-card h3 { font-size: 16px; margin-bottom: 8px; }
.how-card p { font-size: 13px; color: var(--text-muted); }

.about-link {
    text-align: center;
    margin-top: 24px;
}
.about-link a {
    color: var(--accent-glow);
    text-decoration: none;
}

/* About page */
.about-hero {
    text-align: center;
    padding: 48px 0 24px;
}
.about-hero h1 { font-size: 38px; margin-bottom: 10px; }

.about-content {
    max-width: 750px;
    margin: 0 auto;
    padding-bottom: 48px;
}
.about-content h2 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: var(--accent-glow);
}
.about-content p {
    margin-bottom: 12px;
    color: var(--text-muted);
}
.about-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 12px;
}
.about-content li {
    padding: 4px 0;
    color: var(--text-muted);
}

.tema-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.tema-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}
.tema-big-icon { font-size: 24px; display: block; margin-bottom: 4px; }

/* Footer */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 40px 0 20px;
    margin-top: 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 24px;
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h3 { font-size: 18px; margin-bottom: 8px; }
.footer-col h4 { font-size: 14px; margin-bottom: 8px; color: var(--accent-glow); }
.footer-col p { font-size: 13px; color: var(--text-muted); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 4px; }
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
}
.footer-col a:hover { color: var(--text); }
.footer-small { font-size: 11px; margin-top: 8px; }
.footer-small a { color: var(--accent-glow); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* Misc */
code {
    background: var(--bg-elevated);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}
