:root {
    --bg: #07030f;
    --bg-subtle: #0d061c;
    --card: #130826;
    --card-alt: #1a0c33;
    --border: rgba(139, 92, 246, 0.22);
    --border-light: rgba(139, 92, 246, 0.45);
    --primary: #8b5cf6;
    --primary-hover: #a78bfa;
    --pink: #d946ef;
    --cyan: #06b6d4;
    --red: #f43f5e;
    --gold: #facc15;
    --emerald: #10b981;
    --txt: #f3f0ff;
    --txt-muted: #9ca3af;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
body {
    background: var(--bg);
    color: var(--txt);
    font-family: var(--font);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* HEADER */
.site-header {
    background: rgba(7, 3, 15, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}
.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-badge {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 17px;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.45);
}
.brand-name { font-size: 17px; font-weight: 800; letter-spacing: -0.5px; }
.brand-name span { color: var(--pink); }
.brand-sub { display: block; font-size: 10px; color: var(--txt-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-link {
    padding: 7px 11px;
    border-radius: var(--radius-sm);
    font-size: 12.5px; font-weight: 600;
    color: var(--txt-muted);
    transition: all 0.2s;
    display: flex; align-items: center; gap: 6px;
}
.nav-link:hover, .nav-link.active { background: var(--card-alt); color: var(--txt); }
.nav-link.active { border-bottom: 2px solid var(--pink); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.search-bar { position: relative; width: 180px; }
.search-bar i { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--txt-muted); font-size: 11px; }
.search-bar input {
    width: 100%; background: var(--bg-subtle); border: 1px solid var(--border);
    border-radius: 99px; padding: 6px 10px 6px 28px;
    font-size: 12px; color: var(--txt); outline: none;
}
.search-bar input:focus { border-color: var(--primary); }

.btn-admin-link {
    font-size: 11.5px; font-weight: 700;
    padding: 6px 10px; border-radius: var(--radius-sm);
    background: var(--card-alt); border: 1px solid var(--border);
    color: var(--primary-hover);
}

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 9px 18px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 13px; cursor: pointer;
    transition: all 0.2s; border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: #fff;
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(217, 70, 239, 0.45); }
.btn-secondary { background: var(--card-alt); color: var(--txt); border: 1px solid var(--border); }
.btn-secondary:hover { background: #230f45; border-color: var(--primary); }
.btn-outline { background: transparent; border: 1px solid var(--border-light); color: var(--txt); }
.btn-lg { padding: 12px 24px; font-size: 14px; border-radius: var(--radius); }
.btn-sm { padding: 5px 10px; font-size: 11.5px; }
.btn-block { width: 100%; justify-content: center; }

/* SECTIONS */
.section-container { max-width: 1300px; margin: 36px auto 0; padding: 0 20px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.section-title { font-size: 20px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
    font-size: 12px; font-weight: 700; padding: 6px 14px;
    border-radius: 99px; background: var(--card);
    border: 1px solid var(--border); color: var(--txt-muted);
    cursor: pointer; transition: all 0.2s;
}
.chip.active, .chip:hover { background: var(--card-alt); border-color: var(--pink); color: #fff; box-shadow: 0 0 12px rgba(217,70,239,0.3); }

/* 🌟 CELEBRITY IDOLS / SẢNH DANH VỌNG */
.idols-hero-banner, .leaderboard-hero-banner {
    background: radial-gradient(circle at top center, rgba(139, 92, 246, 0.35) 0%, rgba(7, 3, 15, 0.95) 70%), var(--bg);
    border-bottom: 1px solid var(--border); padding: 55px 20px; text-align: center;
}
.hall-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 16px; border-radius: 99px;
    background: rgba(250, 204, 21, 0.15); color: #facc15;
    font-size: 11.5px; font-weight: 800; margin-bottom: 12px;
    border: 1px solid rgba(250, 204, 21, 0.3);
}
.idols-hero-banner h1, .leaderboard-hero-banner h1 { font-size: 34px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.5px; }
.idols-hero-banner p, .leaderboard-hero-banner p { color: var(--txt-muted); font-size: 15px; max-width: 680px; margin: 0 auto; }

.idol-filter-row {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 14px 20px;
    display: flex; align-items: center; gap: 16px; margin-top: 24px; flex-wrap: wrap;
}
.filter-title { font-size: 13px; font-weight: 800; color: var(--primary-hover); display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

.idols-grand-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px;
}
.star-idol-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    display: flex; flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
}
.star-idol-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink);
    box-shadow: 0 20px 40px rgba(217, 70, 239, 0.25);
}

.star-card-cover {
    height: 140px; background-size: cover; background-position: center;
    position: relative; padding: 12px;
    display: flex; justify-content: space-between; align-items: flex-start;
}
.star-card-cover::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, var(--card) 0%, transparent 60%);
}
.star-dna-badge {
    position: relative; z-index: 2;
    background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px);
    color: var(--gold); font-size: 11px; font-weight: 800;
    padding: 4px 10px; border-radius: 99px;
    border: 1px solid rgba(250, 204, 21, 0.3);
}
.star-live-status {
    position: relative; z-index: 2;
    background: rgba(16, 185, 129, 0.2); color: #34d399;
    font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 99px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex; align-items: center; gap: 5px;
}
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.star-avatar-center {
    display: flex; justify-content: center;
    margin-top: -65px; position: relative; z-index: 5;
}
.star-halo {
    width: 115px; height: 115px; border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--gold), var(--pink));
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.45);
}
.star-halo img {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
    border: 3px solid var(--card);
}

.star-card-content { padding: 14px 20px 20px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.star-name { font-size: 19px; font-weight: 900; margin-bottom: 2px; }
.star-handle { font-size: 12px; font-weight: 700; color: var(--txt-muted); margin-bottom: 8px; }
.star-rank-tag {
    display: inline-block; margin: 0 auto 12px;
    font-size: 11.5px; font-weight: 800; color: var(--gold);
    background: rgba(250, 204, 21, 0.1); padding: 3px 12px; border-radius: 99px;
    border: 1px solid rgba(250, 204, 21, 0.2);
}
.star-quote {
    font-size: 12px; color: #cbd5e1; font-style: italic;
    background: var(--bg-subtle); padding: 8px 12px; border-radius: 8px;
    margin-bottom: 14px; border: 1px solid var(--border);
}

/* 4-COLUMN STATS BAR */
.star-stats-bar-4 {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
    background: var(--bg-subtle); border: 1px solid var(--border);
    border-radius: 10px; padding: 10px 4px; margin-bottom: 14px;
}
.stat-col-4 { display: flex; flex-direction: column; align-items: center; }
.stat-num-4 { font-size: 12px; font-weight: 800; line-height: 1.2; }
.stat-num-4.gold { color: var(--gold); }
.stat-num-4.emerald { color: #34d399; }
.stat-num-4.purple { color: #a78bfa; }
.stat-num-4.red { color: #f43f5e; }
.stat-lbl-4 { font-size: 9.5px; color: var(--txt-muted); text-transform: uppercase; font-weight: 700; margin-top: 3px; }

.star-specialties { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.spec-tag { font-size: 10.5px; font-weight: 700; background: var(--card-alt); color: var(--primary-hover); padding: 2px 8px; border-radius: 4px; }
.star-card-actions { display: flex; gap: 8px; margin-top: auto; }

/* 🌟 PROFILE SIÊU SAO (IDOL PROFILE) */
.idol-profile-hero {
    background-size: cover; background-position: center;
    border-bottom: 1px solid var(--border);
    padding: 60px 20px 40px;
}
.idol-profile-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 40px;
}
.profile-avatar-wrap { flex-shrink: 0; text-align: center; }
.profile-halo {
    width: 200px; height: 200px; border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--gold), var(--pink), var(--primary));
    box-shadow: 0 0 40px rgba(217, 70, 239, 0.5);
}
.profile-halo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 4px solid var(--bg); }
.profile-live-badge {
    margin-top: 12px; display: inline-flex; align-items: center; gap: 6px;
    background: rgba(16, 185, 129, 0.15); color: #34d399; font-size: 11.5px; font-weight: 800;
    padding: 4px 14px; border-radius: 99px; border: 1px solid rgba(16, 185, 129, 0.3);
}

.profile-header-info { flex: 1; }
.profile-tags-row { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.profile-star-name { font-size: 36px; font-weight: 900; margin-bottom: 4px; letter-spacing: -0.5px; }
.profile-tiktok-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.profile-tiktok-link { font-size: 14px; font-weight: 800; color: var(--pink); }
.profile-followers-count { font-size: 13px; color: var(--txt-muted); font-weight: 600; }
.profile-quote-box {
    font-size: 14px; font-style: italic; color: #f1f5f9;
    border-left: 3px solid var(--gold); padding: 8px 16px;
    background: rgba(250, 204, 21, 0.05); border-radius: 0 8px 8px 0;
    margin-bottom: 14px;
}
.profile-bio-text { font-size: 14px; color: var(--txt-muted); line-height: 1.7; margin-bottom: 22px; max-width: 800px; }
.profile-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* TROPHY STATS GRID (6 CARDS) */
.trophy-stats-grid-6 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px;
}
.trophy-stat-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 20px; display: flex; align-items: center; gap: 16px;
}
.trophy-stat-card.gold { border-color: rgba(250, 204, 21, 0.4); box-shadow: 0 0 20px rgba(250, 204, 21, 0.15); }
.trophy-stat-card.emerald { border-color: rgba(16, 185, 129, 0.4); }
.trophy-stat-card.pink { border-color: rgba(217, 70, 239, 0.4); }
.trophy-icon { font-size: 30px; flex-shrink: 0; }
.trophy-val { font-size: 22px; font-weight: 900; color: #fff; display: block; }
.trophy-lbl { font-size: 11px; color: var(--txt-muted); text-transform: uppercase; font-weight: 700; margin-top: 2px; }

/* PODIUM & LEADERBOARD */
.podium-wrapper { display: flex; justify-content: center; align-items: flex-end; gap: 20px; margin-top: 30px; }
.podium-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px 20px; text-align: center;
    cursor: pointer; transition: all 0.3s; width: 280px;
}
.podium-card:hover { transform: translateY(-8px); }
.podium-card.rank-1 { border-color: #facc15; box-shadow: 0 0 30px rgba(250, 204, 21, 0.25); z-index: 2; padding-bottom: 40px; }
.podium-card.rank-2 { border-color: #94a3b8; }
.podium-card.rank-3 { border-color: #d97706; }
.podium-crown { font-size: 11.5px; font-weight: 900; margin-bottom: 12px; text-transform: uppercase; }
.podium-crown.gold { color: #facc15; }
.podium-crown.silver { color: #94a3b8; }
.podium-crown.bronze { color: #d97706; }
.podium-avatar-wrap { width: 90px; height: 90px; margin: 0 auto 12px; border-radius: 50%; padding: 3px; }
.podium-avatar-wrap.gold-halo { background: linear-gradient(135deg, #facc15, #ea580c); box-shadow: 0 0 20px rgba(250,204,21,0.5); width: 110px; height: 110px; }
.podium-avatar-wrap.silver-halo { background: linear-gradient(135deg, #e2e8f0, #64748b); }
.podium-avatar-wrap.bronze-halo { background: linear-gradient(135deg, #fbbf24, #78350f); }
.podium-avatar-wrap img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.podium-name { font-size: 17px; font-weight: 800; margin-bottom: 2px; }
.podium-tag { font-size: 11px; color: var(--txt-muted); font-weight: 600; display: block; margin-bottom: 8px; }
.p-points { font-size: 15px; font-weight: 900; display: block; }
.p-sub { font-size: 11px; color: var(--txt-muted); margin-top: 4px; display: block; }

.leaderboard-table { width: 100%; border-collapse: collapse; text-align: left; }
.leaderboard-table th { padding: 12px 16px; font-size: 11.5px; text-transform: uppercase; color: var(--txt-muted); border-bottom: 1px solid var(--border); }
.leaderboard-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 13px; vertical-align: middle; }
.lb-row:hover { background: var(--card-alt); }
.lb-idol-cell { display: flex; align-items: center; gap: 12px; }
.lb-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--pink); }
.lb-name { font-weight: 800; color: #fff; font-size: 14px; display: block; }
.lb-sub { font-size: 11px; color: var(--txt-muted); }

/* REEL GRID & 16:9 */
.reel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reel-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    cursor: pointer; transition: all 0.25s;
}
.reel-card:hover { transform: translateY(-4px); border-color: var(--primary-hover); box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
.reel-thumb-wrap { position: relative; aspect-ratio: 9/14; overflow: hidden; background: #000; }
.reel-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }
.reel-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 12px;
}
.reel-stat { font-size: 11px; font-weight: 600; background: rgba(0,0,0,0.6); padding: 2px 8px; border-radius: 99px; align-self: flex-start; }
.reel-play-btn {
    align-self: center; width: 44px; height: 44px;
    border-radius: 50%; background: rgba(217, 70, 239, 0.85);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
    opacity: 0; transform: scale(0.8); transition: all 0.2s;
}
.reel-card:hover .reel-play-btn { opacity: 1; transform: scale(1); }
.reel-meta { padding: 12px; }
.reel-title { font-size: 13.5px; font-weight: 700; line-height: 1.35; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.video-grid-16-9 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.video-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all 0.2s; }
.video-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.video-thumb { position: relative; aspect-ratio: 16/9; background: #000; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-info { padding: 12px; }
.video-title { font-size: 13px; font-weight: 700; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-author-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--txt-muted); }

/* BADGES */
.badge { display: inline-block; padding: 3px 9px; border-radius: 6px; font-size: 11px; font-weight: 800; }
.badge-purple { background: rgba(139, 92, 246, 0.2); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.3); }
.badge-pink { background: rgba(217, 70, 239, 0.2); color: #f472b6; border: 1px solid rgba(217, 70, 239, 0.3); }
.badge-emerald { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-yellow { background: rgba(250, 204, 21, 0.2); color: #facc15; border: 1px solid rgba(250, 204, 21, 0.3); }

/* LUXURY 4-COLUMN FOOTER */
.site-footer {
    background: #09090d;
    border-top: 1px solid rgba(250, 204, 21, 0.15);
    margin-top: 60px;
    padding: 50px 24px 24px;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 1px;
    background: linear-gradient(90deg, transparent, #facc15, transparent);
}
.footer-inner-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo-badge {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    display: flex; align-items: center; justify-content: center;
    color: #000; font-size: 20px;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.35);
}
.footer-logo-title { font-size: 17px; font-weight: 900; letter-spacing: -0.3px; color: #fff; margin: 0; }
.footer-logo-sub { font-size: 11.5px; color: #94a3b8; font-weight: 600; }
.gold-text { color: #facc15 !important; }
.footer-desc { font-size: 13.5px; color: #94a3b8; line-height: 1.65; margin-bottom: 20px; }

.footer-social-links { display: flex; gap: 10px; margin-top: auto; }
.social-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: center;
    color: #cbd5e1; font-size: 16px; text-decoration: none;
    transition: all 0.25s;
}
.social-icon:hover { transform: translateY(-3px); color: #fff; border-color: #facc15; background: rgba(250, 204, 21, 0.1); }
.social-icon.tiktok:hover { color: #ff0055; border-color: #ff0055; }
.social-icon.fb:hover { color: #1877f2; border-color: #1877f2; }
.social-icon.yt:hover { color: #ff0000; border-color: #ff0000; }
.social-icon.zalo:hover { color: #0068ff; border-color: #0068ff; }

.footer-heading {
    font-size: 15px; font-weight: 800; color: #fff;
    margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.footer-link-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-link-list li a {
    color: #94a3b8; font-size: 13.5px; font-weight: 600; text-decoration: none;
    display: flex; align-items: center; gap: 8px; transition: all 0.2s;
}
.footer-link-list li a:hover { color: #facc15; transform: translateX(4px); }

.footer-contact-info { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; color: #94a3b8; line-height: 1.5; }
.footer-contact-info p { display: flex; align-items: center; gap: 8px; margin: 0; }
.footer-contact-info strong { color: #e2e8f0; }
.verified-badge-row { margin-top: 14px; }
.verified-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(16, 185, 129, 0.12); color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 6px 14px; border-radius: 99px; font-size: 12px; font-weight: 800;
}

.footer-bottom-bar {
    max-width: 1300px; margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    font-size: 12.5px; color: #64748b;
}
.footer-bottom-inner strong { color: #cbd5e1; }
.footer-badges { display: flex; gap: 18px; font-size: 12px; font-weight: 700; color: #94a3b8; flex-wrap: wrap; }
.footer-badges span { display: flex; align-items: center; gap: 6px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .idols-grand-grid { grid-template-columns: repeat(2, 1fr); }
    .trophy-stats-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .podium-wrapper { flex-direction: column; align-items: center; }
    .idol-profile-inner { flex-direction: column; text-align: center; }
    .profile-tags-row, .profile-cta-buttons, .profile-tiktok-row { justify-content: center; }
    .footer-inner-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .search-bar { width: 120px; }
    .idols-grand-grid, .reel-grid, .video-grid-16-9, .trophy-stats-grid-6 { grid-template-columns: 1fr; }
    .idol-filter-row { flex-direction: column; align-items: stretch; }
    .footer-inner-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; justify-content: center; }
}
