/**
 * TrendingPunjabi - Shared Ranking Page Styles
 * Path: /otherLinks/mainFiles/css/rankings-shared.css
 *
 * Used by: punjabi-song-ranking, punjabi-singer-ranking, punjabi-movie-ranking,
 *          poll-rankings/punjabi-actresses, poll-rankings/indian-actresses
 *
 * Each page sets --accent, --accent-light, --accent-glow via a small inline <style>
 */

/* === Base Layout === */
html, body { max-width: 100%; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.ranking-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* === Page Header === */
.page-header {
    text-align: center;
    margin-bottom: 25px;
}

.page-header h1 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.page-header p {
    color: var(--text-secondary, #8b949e);
    max-width: 500px;
    margin: 0 auto 12px;
    font-size: 0.9rem;
}

/* === Stats Bar === */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted, #6e7681);
    text-transform: uppercase;
}

/* === Category Links === */
.category-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category-link {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary, #8b949e);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.category-link:hover,
.category-link:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
    outline: none;
}

.category-link.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    border-color: transparent;
}

/* === Period Tabs === */
.period-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.period-tab {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-muted, #6e7681);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.period-tab:hover,
.period-tab:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
    outline: none;
}

.period-tab.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* === Battle Section === */
.battle-section {
    background: linear-gradient(180deg, rgba(20, 25, 35, 0.95), rgba(15, 18, 28, 0.98));
    border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
    border-radius: 20px;
    padding: 20px 15px;
    margin-bottom: 25px;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.battle-title {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted, #6e7681);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.battle-title span {
    color: var(--accent);
    font-weight: 600;
}

/* === Battle Arena === */
.battle-arena {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    min-height: 220px;
    transition: opacity 0.3s, transform 0.3s;
}

.battle-arena.transitioning {
    opacity: 0;
    transform: scale(0.96);
}

/* === Contestant Cards === */
.contestant {
    flex: 1;
    max-width: 180px;
    background: linear-gradient(165deg, rgba(35, 40, 55, 0.9), rgba(25, 30, 45, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contestant:hover,
.contestant:focus-visible {
    border-color: color-mix(in srgb, var(--accent) 50%, transparent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    outline: none;
}

.contestant.winner-glow {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.03);
}

/* Song thumbnails (rectangular) */
.contestant-img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
    background: #1a1f2e;
}

.contestant-placeholder {
    width: 100px;
    height: 75px;
    background: linear-gradient(145deg, #252a3a, #1a1f2e);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 10px;
    border: 2px solid color-mix(in srgb, var(--accent) 25%, transparent);
}

/* Singer/actress circular images */
.contestant-img.round,
.ranking-page[data-shape="round"] .contestant-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border-width: 3px;
}

.contestant-placeholder.round,
.ranking-page[data-shape="round"] .contestant-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border-width: 3px;
    font-size: 2.5rem;
}

/* Portrait images (actresses/movies) */
.contestant-img.portrait,
.ranking-page[data-shape="portrait"] .contestant-img {
    width: 100px;
    height: 140px;
}

.contestant-placeholder.portrait,
.ranking-page[data-shape="portrait"] .contestant-placeholder {
    width: 100px;
    height: 140px;
    font-size: 2.5rem;
}

.contestant-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.4em;
    word-break: break-word;
}

.contestant-artist,
.contestant-year {
    font-size: 0.7rem;
    color: var(--text-muted, #6e7681);
    margin-bottom: 6px;
    height: 1.2em;
    overflow: hidden;
}

.contestant-stats {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.contestant-stats span {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.06);
}

.contestant-stats .wins { color: #22c55e; }
.contestant-stats .losses { color: #ef4444; }
.contestant-stats .pts { color: var(--accent); font-weight: 600; }

/* === Vote Button === */
.vote-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    margin-top: auto;
    min-height: 44px;
}

.vote-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.vote-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* === VS Circle === */
.vs-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: color-mix(in srgb, var(--accent) 15%, transparent);
    border: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--accent);
    align-self: center;
}

/* === Skip & Feedback === */
.skip-btn {
    display: block;
    margin: 15px auto 0;
    padding: 8px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--text-secondary, #8b949e);
    cursor: pointer;
    font-size: 0.85rem;
    min-height: 44px;
}

.skip-btn:hover,
.skip-btn:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
    outline: none;
}

.vote-feedback {
    text-align: center;
    padding: 10px;
    color: #22c55e;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.vote-feedback.show { opacity: 1; }

/* === Confetti & Vote Counter === */
.confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.vote-counter {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    opacity: 0.8;
}

.vote-counter.animate {
    animation: counterPop 0.4s ease;
}

@keyframes counterPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* === Hall of Fame Link === */
.hof-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: color-mix(in srgb, var(--accent) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
    border-radius: 12px;
    color: var(--accent);
    text-decoration: none;
    margin-bottom: 25px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.hof-link:hover,
.hof-link:focus-visible {
    background: color-mix(in srgb, var(--accent) 15%, transparent);
    transform: translateY(-2px);
    outline: none;
}

/* === Leaderboard Section === */
.leaderboard-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px 15px;
    margin-bottom: 25px;
}

.leaderboard-header {
    margin-bottom: 15px;
}

.leaderboard-header h2 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
}

/* === Search Form === */
.search-form {
    display: flex;
    gap: 8px;
}

.search-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 12px;
    color: #fff;
    font-size: 0.9rem;
    min-height: 44px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-glow);
}

.search-btn {
    background: var(--accent);
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    color: #fff;
    min-height: 44px;
    font-weight: 600;
    transition: background 0.2s;
}

.search-btn:hover {
    filter: brightness(1.1);
}

.search-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* === Leaderboard Table === */
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
    text-align: left;
    padding: 10px 8px;
    font-size: 0.85rem;
}

.leaderboard-table th {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted, #6e7681);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.leaderboard-table tr:hover {
    background: color-mix(in srgb, var(--accent) 6%, transparent);
}

/* Rank highlighting */
.rank-cell {
    font-weight: 700;
    color: var(--text-secondary, #8b949e);
    width: 40px;
}

.rank-1 { color: #ffd700; }
.rank-2 { color: #c0c0c0; }
.rank-3 { color: #cd7f32; }

/* Song/Singer/Movie cells */
.song-cell,
.singer-cell,
.movie-cell,
.person-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.song-thumb,
.singer-thumb,
.movie-thumb,
.person-thumb {
    object-fit: cover;
    background: #1a1f2e;
}

.song-thumb { width: 60px; height: 45px; border-radius: 4px; }
.singer-thumb { width: 45px; height: 45px; border-radius: 50%; }
.movie-thumb { width: 40px; height: 56px; border-radius: 4px; }
.person-thumb { width: 45px; height: 45px; border-radius: 50%; }

.song-thumb-placeholder,
.singer-thumb-placeholder,
.movie-thumb-placeholder,
.person-thumb-placeholder {
    background: linear-gradient(145deg, #252a3a, #1a1f2e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.song-thumb-placeholder { width: 60px; height: 45px; border-radius: 4px; font-size: 1.2rem; }
.singer-thumb-placeholder { width: 45px; height: 45px; border-radius: 50%; font-weight: 600; color: var(--text-muted); font-size: 0.9rem; }
.movie-thumb-placeholder { width: 40px; height: 56px; border-radius: 4px; font-size: 1.2rem; }
.person-thumb-placeholder { width: 45px; height: 45px; border-radius: 50%; font-weight: 600; color: var(--text-muted); font-size: 0.9rem; }

.song-info h3,
.singer-info h3,
.movie-info h3,
.person-info h3 {
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    word-break: break-word;
}

.song-info h3 a,
.singer-info h3 a,
.movie-info h3 a,
.person-info h3 a {
    color: #fff;
    text-decoration: none;
}

.song-info h3 a:hover,
.singer-info h3 a:hover,
.movie-info h3 a:hover,
.person-info h3 a:hover {
    color: var(--accent);
}

.song-info .artist,
.movie-info .year {
    font-size: 0.75rem;
    color: var(--text-muted, #6e7681);
}

/* === Points & Elo Badges === */
.points-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    color: var(--accent);
}

.elo-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    color: var(--text-muted, #6e7681);
    background: rgba(255, 255, 255, 0.05);
}

.elo-col { display: none; }

/* Win/Loss Record */
.record-cell {
    color: var(--text-secondary, #8b949e);
    font-size: 0.8rem;
}

.record-cell .w { color: #22c55e; }
.record-cell .l { color: #ef4444; }

/* === Pagination === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.page-link {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-secondary, #8b949e);
    text-decoration: none;
    font-size: 0.85rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active,
.page-link:focus-visible {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    outline: none;
}

/* === Stats Cards === */
.stats-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.stats-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 15px;
}

.stats-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stats-card-header h3 {
    font-size: 0.95rem;
    color: #fff;
    margin: 0;
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-list li:last-child { border-bottom: none; }

.item-name {
    font-size: 0.85rem;
    color: #fff;
}

.stat-badge {
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    color: var(--accent);
}

.stat-badge.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* === SEO Content === */
.seo-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 25px 20px;
    margin-top: 30px;
}

.seo-content h2 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.seo-content h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.seo-content p {
    color: var(--text-secondary, #8b949e);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.seo-content ul {
    color: var(--text-secondary, #8b949e);
    padding-left: 20px;
    margin-bottom: 15px;
}

.seo-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.artist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.artist-tag {
    padding: 6px 14px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    border-radius: 20px;
    color: var(--accent);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
}

.artist-tag:hover {
    background: color-mix(in srgb, var(--accent) 22%, transparent);
    transform: translateY(-1px);
}

/* === Loading State === */
.battle-section.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* === Desktop Breakpoint === */
@media (min-width: 768px) {
    .elo-col { display: table-cell; }
    .ranking-page { padding: 30px 20px; }
    .page-header h1 { font-size: 2rem; }
    .battle-section { padding: 30px 25px; min-height: 360px; }
    .battle-arena { min-height: 260px; }
    .contestant { max-width: 200px; padding: 20px 15px; }
    .contestant-img { width: 140px; height: 105px; }
    .contestant-placeholder { width: 140px; height: 105px; }
    .contestant-img.round,
    .ranking-page[data-shape="round"] .contestant-img { width: 120px; height: 120px; }
    .contestant-placeholder.round,
    .ranking-page[data-shape="round"] .contestant-placeholder { width: 120px; height: 120px; }
    .contestant-img.portrait,
    .ranking-page[data-shape="portrait"] .contestant-img { width: 120px; height: 168px; }
    .contestant-placeholder.portrait,
    .ranking-page[data-shape="portrait"] .contestant-placeholder { width: 120px; height: 168px; }
    .vs-circle { width: 50px; height: 50px; font-size: 0.8rem; }
    .stats-section { grid-template-columns: repeat(2, 1fr); }
}

/* === Small Screen Adjustments === */
@media (max-width: 500px) {
    .leaderboard-table th:nth-child(5),
    .leaderboard-table td:nth-child(5) { display: none; }
}

@media (max-width: 380px) {
    .leaderboard-section { overflow-x: auto; }
    .leaderboard-table { min-width: 480px; }
}

@media (max-width: 360px) {
    .category-links {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .category-links::-webkit-scrollbar { display: none; }
    .category-link { white-space: nowrap; flex-shrink: 0; }
}

/* =============================================
   LIGHT THEME
   ============================================= */
[data-theme="light"] .ranking-page .page-header p,
[data-theme="light"] .ranking-page .stat-label {
    color: #57606a;
}

[data-theme="light"] .category-link {
    background: rgba(0, 0, 0, 0.03);
    border-color: #d1d9e0;
    color: #57606a;
}

[data-theme="light"] .category-link:hover,
[data-theme="light"] .category-link:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
}

[data-theme="light"] .category-link.active {
    color: #fff;
    border-color: transparent;
}

[data-theme="light"] .period-tab {
    background: rgba(0, 0, 0, 0.02);
    border-color: #d1d9e0;
    color: #57606a;
}

[data-theme="light"] .period-tab:hover,
[data-theme="light"] .period-tab:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
}

[data-theme="light"] .period-tab.active {
    color: #fff;
}

[data-theme="light"] .battle-section {
    background: linear-gradient(180deg, #f6f8fa, #eef1f5);
    border-color: #d1d9e0;
}

[data-theme="light"] .contestant {
    background: #fff;
    border-color: #d1d9e0;
}

[data-theme="light"] .contestant:hover,
[data-theme="light"] .contestant:focus-visible {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

[data-theme="light"] .contestant-name {
    color: #1f2328;
}

[data-theme="light"] .contestant-stats span {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .vs-circle {
    background: rgba(0, 0, 0, 0.04);
    border-color: #d1d9e0;
}

[data-theme="light"] .skip-btn {
    border-color: #d1d9e0;
    color: #57606a;
}

[data-theme="light"] .hof-link {
    background: color-mix(in srgb, var(--accent) 6%, white);
    border-color: color-mix(in srgb, var(--accent) 30%, #d1d9e0);
}

[data-theme="light"] .leaderboard-section {
    background: #fff;
    border-color: #d1d9e0;
}

[data-theme="light"] .leaderboard-header h2 {
    color: #1f2328;
}

[data-theme="light"] .search-input {
    background: #fff;
    border-color: #d1d9e0;
    color: #1f2328;
}

[data-theme="light"] .leaderboard-table th {
    color: #57606a;
    border-bottom-color: #d1d9e0;
}

[data-theme="light"] .leaderboard-table td {
    border-bottom-color: #eef1f5;
}

[data-theme="light"] .leaderboard-table tr:hover {
    background: #f6f8fa;
}

[data-theme="light"] .song-info h3 a,
[data-theme="light"] .singer-info h3 a,
[data-theme="light"] .movie-info h3 a,
[data-theme="light"] .person-info h3 a {
    color: #1f2328;
}

[data-theme="light"] .rank-cell {
    color: #57606a;
}

[data-theme="light"] .page-link {
    background: #fff;
    border-color: #d1d9e0;
    color: #57606a;
}

[data-theme="light"] .page-link:hover,
[data-theme="light"] .page-link.active {
    color: #fff;
}

[data-theme="light"] .stats-card {
    background: #fff;
    border-color: #d1d9e0;
}

[data-theme="light"] .stats-card-header h3,
[data-theme="light"] .item-name {
    color: #1f2328;
}

[data-theme="light"] .stats-list li {
    border-bottom-color: #eef1f5;
}

[data-theme="light"] .seo-content {
    background: #fff;
    border-color: #d1d9e0;
}

[data-theme="light"] .seo-content h3 {
    color: #1f2328;
}

[data-theme="light"] .seo-content p,
[data-theme="light"] .seo-content ul {
    color: #57606a;
}

[data-theme="light"] .contestant-placeholder {
    background: linear-gradient(145deg, #eef1f5, #f6f8fa);
}

[data-theme="light"] .song-thumb-placeholder,
[data-theme="light"] .singer-thumb-placeholder,
[data-theme="light"] .movie-thumb-placeholder,
[data-theme="light"] .person-thumb-placeholder {
    background: linear-gradient(145deg, #eef1f5, #f6f8fa);
}
