/* Analise Page Styles */
.rk-analise-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

.rk-analise-card {
    background: var(--card);
    border: 1.5px solid var(--border2);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.rk-analise-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
}

.rk-analise-card h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 20px;
    background: var(--accent);
    border-radius: 2px;
}

/* Notícias */
.noticias-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.noticia-item {
    background: var(--bg2);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 12px 14px;
    transition: all 0.2s;
}

.noticia-item:hover {
    background: var(--bg3);
    border-left-color: var(--cyan);
}

.noticia-date {
    font-size: 11px;
    color: var(--muted2);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.noticia-titulo {
    font-size: 14px;
    font-weight: 600;
    margin: 6px 0;
    line-height: 1.3;
}

.noticia-titulo a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.noticia-titulo a:hover {
    color: var(--accent);
}

.noticia-excerpt {
    font-size: 12px;
    color: var(--text2);
    margin: 6px 0 0 0;
    line-height: 1.4;
}

/* Top Times Grid */
.top-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.time-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s;
}

.time-item:hover {
    background: var(--bg3);
    border-color: var(--accent);
}

.time-rank {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 6px;
}

.time-name {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    word-break: break-word;
}

.time-points {
    display: block;
    font-size: 11px;
    color: var(--text2);
    font-family: 'Share Tech Mono', monospace;
}

@media (max-width: 768px) {
    .rk-analise-container {
        grid-template-columns: 1fr;
    }

    .top-times-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/* Footer */
footer {
    background: var(--card);
    border-top: 1.5px solid var(--border2);
    margin-top: 50px;
}

#retakecs-root footer {
    padding: 30px 28px;
}

#retakecs-root .rk-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

#retakecs-root .rk-footer-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text);
    flex-shrink: 0;
}

#retakecs-root .rk-footer-logo span {
    color: var(--accent);
}

#retakecs-root .rk-footer-links {
    display: flex;
    gap: 20px;
    flex: 1;
}

#retakecs-root .rk-footer-links a {
    font-size: 13px;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.2s;
}

#retakecs-root .rk-footer-links a:hover {
    color: var(--accent);
}

#retakecs-root .rk-footer-copy {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--muted);
}
