/* ===== MODERN PREMIUM DESIGN ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 100px 20px;
    overflow: hidden;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffb703;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffb703 0%, #ff9500 100%);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(255, 183, 3, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 183, 3, 0.4);
}

.hero-accent {
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at 30% 50%, rgba(255, 183, 3, 0.15), transparent 70%),
                radial-gradient(circle at 70% 60%, rgba(45, 152, 218, 0.15), transparent 70%);
    border-radius: 20px;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .hero-accent {
        height: 250px;
    }
}

/* ===== KING OF DANCE SECTION ===== */
.king-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f0f 100%);
    padding: 80px 20px;
    border-top: 1px solid rgba(255, 183, 3, 0.2);
}

.king-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
}

.king-card {
    background: linear-gradient(135deg, rgba(45, 152, 218, 0.1) 0%, rgba(255, 183, 3, 0.1) 100%);
    border: 2px solid rgba(255, 183, 3, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
}

.king-content h3 {
    font-size: 2.8rem;
    color: #ffb703;
    margin-bottom: 16px;
}

.king-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.king-content .stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.king-content .stat-item {
    text-align: center;
}

.king-content .stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffb703;
    display: block;
}

.king-content .stat-label {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-top: 8px;
}

.king-content video,
.king-content iframe {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    margin: 30px auto;
    display: block;
}

/* ===== LEADERBOARD SECTION ===== */
.leaderboard-section {
    background: #0f0f0f;
    padding: 80px 20px;
}

.leaderboard-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 50px;
}

.leaderboard-grid {
    display: grid;
    gap: 24px;
}

.rank-card {
    background: linear-gradient(135deg, rgba(45, 152, 218, 0.1) 0%, rgba(255, 183, 3, 0.05) 100%);
    border: 1px solid rgba(255, 183, 3, 0.2);
    border-radius: 16px;
    padding: 30px;
    display: grid;
    gap: 20px;
}

.rank-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.rank-card-top h3 {
    font-size: 1.8rem;
    color: #ffb703;
    margin: 0 0 12px 0;
}

.rank-info {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.vote-btn, .love-btn, .dislike-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vote-btn {
    background: linear-gradient(135deg, #ffb703 0%, #ff9500 100%);
    color: #000;
}

.love-btn {
    background: linear-gradient(135deg, #ef476f 0%, #d63447 100%);
    color: white;
}

.dislike-btn {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
}

.vote-btn:hover, .love-btn:hover, .dislike-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.rank-card video,
.rank-card iframe {
    width: 100%;
    border-radius: 12px;
    max-height: 400px;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px;
}

.why-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(45, 152, 218, 0.1);
    border: 1px solid rgba(45, 152, 218, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: #ffb703;
    background: rgba(255, 183, 3, 0.05);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffb703;
}

.why-card p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #ffb703 0%, #ff9500 100%);
    color: #000;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.contact-note {
    opacity: 0.85;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 183, 3, 0.2);
}

.footer p {
    opacity: 0.8;
    margin-bottom: 16px;
}

.adsense-space {
    display: inline-block;
    background: rgba(255, 183, 3, 0.1);
    border: 1px dashed rgba(255, 183, 3, 0.3);
    padding: 20px 40px;
    border-radius: 12px;
    opacity: 0.7;
}

/* ===== COMMENTS SECTION ===== */
.comments-section {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 183, 3, 0.1);
    padding-top: 24px;
}

.comments-list {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.comment-item {
    background: rgba(255, 183, 3, 0.05);
    border-left: 3px solid #ffb703;
    padding: 16px;
    border-radius: 8px;
}

.comment-item strong {
    display: block;
    color: #ffb703;
    margin-bottom: 4px;
}

.comment-item span {
    font-size: 0.85rem;
    opacity: 0.6;
}

.comment-form {
    display: grid;
    gap: 12px;
}

.comment-form input,
.comment-form textarea {
    background: rgba(255, 183, 3, 0.05);
    border: 1px solid rgba(255, 183, 3, 0.2);
    color: #e0e0e0;
    padding: 12px;
    border-radius: 8px;
    font-family: inherit;
}

.comment-form button {
    background: linear-gradient(135deg, #ffb703 0%, #ff9500 100%);
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #1a1a2e;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 183, 3, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffb703;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffb703;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    color: #ffb703;
    opacity: 0.9;
}

/* ===== FEATURED PREVIEW SECTION ===== */
.featured-preview-section {
    padding: 60px 20px;
    background: #0f0f0f;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.featured-preview-card {
    background: #1a1a2e;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 183, 3, 0.2);
    position: relative;
    transition: all 0.3s;
}

.featured-preview-card:hover {
    transform: translateY(-5px);
    border-color: #ffb703;
    box-shadow: 0 10px 30px rgba(255, 183, 3, 0.2);
}

.rank-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ffb703;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.featured-preview-card h3 {
    margin-top: 12px;
    color: #fff;
}

.featured-preview-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 8px 0;
}

.stats-mini {
    margin: 16px 0;
    padding: 12px;
    background: #0f0f0f;
    border-radius: 8px;
    font-weight: 600;
    color: #ffb703;
}

.view-link {
    display: inline-block;
    color: #ffb703;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: color 0.3s;
}

.view-link:hover {
    color: #ff9500;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f0f 100%);
}

.how-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.how-card {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 183, 3, 0.15);
    text-align: center;
}

.how-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffb703;
    margin-bottom: 16px;
}

.how-card h3 {
    color: #fff;
    margin-bottom: 12px;
}

.how-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* ===== LEADERBOARD PAGE ===== */
.filters-section {
    padding: 30px 20px;
    background: #1a1a2e;
}

.filter-group,
.search-group {
    margin-bottom: 20px;
}

.filters-section .container {
    display: flex;
    gap: 30px;
    align-items: flex-end;
}

.filters-section label {
    display: block;
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 8px;
}

.filters-section select,
.filters-section input {
    background: #0f0f0f;
    border: 1px solid rgba(255, 183, 3, 0.2);
    padding: 12px;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
}

.filters-section select:focus,
.filters-section input:focus {
    outline: none;
    border-color: #ffb703;
}

.leaderboard-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.rank-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffb703;
    min-width: 60px;
}

.rank-content {
    flex: 1;
}

.rank-content h3 {
    margin-bottom: 4px;
}

.bio {
    font-size: 0.95rem;
    color: #b0b0b0;
}

.social {
    margin-top: 8px;
}

.rank-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat .label {
    display: block;
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-bottom: 4px;
}

.stat .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffb703;
}

.rank-actions {
    display: flex;
    gap: 10px;
}

.vote-btn,
.love-btn,
.dislike-btn,
.view-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.vote-btn {
    background: #ffb703;
    color: #000;
}

.love-btn,
.dislike-btn {
    background: rgba(255, 183, 3, 0.2);
    color: #ffb703;
    border: 1px solid #ffb703;
}

.view-btn {
    background: rgba(45, 152, 218, 0.2);
    color: #45d7ff;
    border: 1px solid #45d7ff;
}

.vote-btn:hover {
    background: #ff9500;
}

.love-btn:hover,
.dislike-btn:hover {
    background: #ffb703;
    color: #000;
}

.view-btn:hover {
    background: #45d7ff;
    color: #000;
}

/* ===== DANCER PROFILE ===== */
.dancer-profile-section {
    padding: 40px 20px;
}

.back-link {
    color: #ffb703;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
}

.back-link:hover {
    color: #ff9500;
}

.profile-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.profile-info h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.profile-info .bio {
    color: #b0b0b0;
    margin-bottom: 16px;
}

/* YouTube Channel Info */
.youtube-channel-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.youtube-profile-pic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff0000;
}

.youtube-details {
    flex: 1;
}

.youtube-channel-name {
    font-weight: 600;
    color: #ff0000;
    margin-bottom: 4px;
    font-size: 1rem;
}

.youtube-stats {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: #1a1a2e;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 183, 3, 0.2);
    text-align: center;
}

.stat-label {
    display: block;
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffb703;
}

.dancer-video-section {
    margin: 40px 0;
}

.video-container {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 183, 3, 0.2);
    overflow: hidden;
    position: relative;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.video-badge,
.featured-badge {
    display: inline-block;
    background: #ffb703;
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 999px;
    margin: 10px 0 8px;
}

/* Overlay badges for video thumbnails */
.video-badge-overlay,
.featured-badge-overlay {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    background: linear-gradient(135deg, #00D9FF 0%, #0088FF 50%, #0055FF 100%) !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    padding: 16px 26px !important;
    min-width: 120px !important;
    text-align: center !important;
    border-radius: 14px !important;
    z-index: 9999 !important;
    box-shadow: 
        0 0 24px rgba(0, 217, 255, 0.85) !important,
        0 0 50px rgba(0, 136, 255, 0.65) !important,
        0 12px 42px rgba(0, 85, 255, 0.55) !important,
        inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    animation: pulse-new 2s ease-in-out infinite !important;
    border: 2px solid rgba(255, 255, 255, 0.45) !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35) !important;
    filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.7)) !important;
    pointer-events: none !important;
}

@keyframes pulse-new {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(0, 217, 255, 0.7),
            0 0 40px rgba(0, 136, 255, 0.5),
            0 8px 32px rgba(0, 85, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 
            0 0 30px rgba(0, 217, 255, 0.9),
            0 0 60px rgba(0, 136, 255, 0.7),
            0 12px 40px rgba(0, 85, 255, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.dancer-actions-section {
    padding: 30px 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.dancer-actions-section button {
    min-width: 180px;
}

.comments-section {
    padding: 40px 20px;
    background: #1a1a2e;
    border-radius: 12px;
    margin-bottom: 40px;
}

.comments-section h2 {
    margin-bottom: 30px;
}

.comments-list {
    margin-bottom: 40px;
}

.comment-item {
    background: #0f0f0f;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.comment-item strong {
    color: #ffb703;
}

.comment-item .date {
    color: #b0b0b0;
    font-size: 0.85rem;
    margin-left: 12px;
}

.comment-item p {
    margin-top: 12px;
    color: #e0e0e0;
}

.comment-form-container h3 {
    margin-bottom: 20px;
}

.comment-form-container form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-form-container input,
.comment-form-container textarea {
    background: #0f0f0f;
    border: 1px solid rgba(255, 183, 3, 0.2);
    padding: 12px;
    border-radius: 8px;
    color: #e0e0e0;
    font-family: inherit;
}

.comment-form-container input::placeholder,
.comment-form-container textarea::placeholder {
    color: #666;
}

.comment-form-container button {
    align-self: flex-start;
}

.related-section {
    padding: 40px 20px;
}

.related-section h2 {
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.related-card {
    background: #1a1a2e;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 183, 3, 0.2);
    text-align: center;
}

.related-card h3 {
    color: #fff;
    margin-bottom: 12px;
}

.related-card p {
    color: #b0b0b0;
    margin-bottom: 12px;
}

.related-card .votes {
    color: #ffb703;
    font-weight: 600;
}

/* ===== BLOG PAGE ===== */
.featured-blog {
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.featured-post {
    background: rgba(255, 183, 3, 0.1);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid rgba(255, 183, 3, 0.3);
}

.featured-post h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 12px;
}

.featured-post .meta {
    color: #ffb703;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.featured-post .excerpt {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-posts-section {
    padding: 60px 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 183, 3, 0.15);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #ffb703;
    box-shadow: 0 10px 30px rgba(255, 183, 3, 0.15);
}

.blog-meta {
    color: #ffb703;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.blog-card h3 {
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    color: #b0b0b0;
    margin-bottom: 16px;
    line-height: 1.6;
}

.read-more {
    color: #ffb703;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #ff9500;
}

.newsletter-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 12px;
}

.newsletter-section p {
    color: #b0b0b0;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: #0f0f0f;
    border: 1px solid rgba(255, 183, 3, 0.2);
    padding: 14px;
    border-radius: 6px;
    color: #e0e0e0;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    padding: 14px 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: rgba(255, 183, 3, 0.2);
    color: #ffb703;
    border: 2px solid #ffb703;
}

.cta-button.secondary:hover {
    background: #ffb703;
    color: #000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.footer-links a {
    color: #ffb703;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-section h4 {
    color: #ffb703;
    margin-bottom: 12px;
}

.footer-section p,
.footer-section a {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffb703;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .king-card {
        padding: 30px 20px;
    }
    
    .king-content .stats {
        gap: 30px;
    }
    
    .rank-card-top {
        flex-direction: column;
    }

    .navbar .container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .profile-header {
        grid-template-columns: 1fr;
    }

    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-container iframe,
    .video-container video {
        height: 300px;
    }

    .dancer-actions-section {
        flex-direction: column;
    }

    .dancer-actions-section button {
        width: 100%;
    }

    .filters-section .container {
        flex-direction: column;
    }

    .leaderboard-card {
        flex-direction: column;
        text-align: center;
    }

    .rank-stats {
        justify-content: center;
    }

    .rank-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .featured-post {
        padding: 24px;
    }
}

/* ===== SA TALENT HUB FEED STYLES ===== */

.feed-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.featured-slot {
    margin: 24px 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    background: linear-gradient(180deg, rgba(255, 183, 3, 0.12), rgba(15, 15, 15, 0.95));
    border: 1px solid rgba(255, 183, 3, 0.18);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.featured-media {
    position: relative;
    width: 100%;
    height: 400px;
    min-height: 400px;
    max-height: 400px;
    overflow: hidden;
}

.featured-media iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    object-fit: cover;
}

.featured-media iframe.loaded {
    opacity: 1;
}

.featured-media iframe.platform-iframe.youtube-iframe,
.video-container iframe.youtube-iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 420px;
}

.featured-media iframe.platform-iframe.tiktok-iframe,
.video-container iframe.tiktok-iframe {
    aspect-ratio: 9 / 16;
    height: auto;
    min-height: 820px;
}

.featured-card.featured-card--tiktok {
    grid-template-columns: 1fr;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin: 40px auto;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
    border-radius: 32px;
}

.featured-card.featured-card--tiktok .featured-media {
    max-width: 100%;
}

.featured-card.featured-card--tiktok .featured-media iframe {
    min-height: 92vh;
    height: 92vh;
    max-height: 92vh;
}

.featured-card.featured-card--tiktok .featured-copy {
    padding: 28px 32px 32px;
}

.featured-card.featured-card--tiktok .featured-actions {
    justify-content: flex-start;
}

.featured-media iframe.platform-iframe.facebook-iframe,
.video-container iframe.facebook-iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 420px;
}

.video-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.card-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
    margin: 0 !important;
    padding: 0 !important;
}

.video-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
}

.play-overlay {
    position: relative;
    z-index: 1;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.play-overlay:hover {
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.75);
}

.featured-copy {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.creator-tag {
    display: inline-block;
    color: #ffb703;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.featured-card h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    margin: 0;
    color: #ffffff;
}

.featured-copy p {
    color: #dcdcdc;
    line-height: 1.8;
    font-size: 1rem;
}

.featured-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    padding: 14px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ffb703 0%, #ff9500 100%);
    color: #000;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn:hover {
    transform: translateY(-2px);
}

.video-feed {
    display: grid;
    gap: 20px;
}

.video-card {
    position: relative;
    min-height: 100vh;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 183, 3, 0.08), rgba(15, 15, 15, 0.96));
    border: 1px solid rgba(255, 183, 3, 0.12);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 183, 3, 0.08), transparent 40%);
    pointer-events: none;
}

.card-top {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 2;
    color: #fff;
    display: grid;
    gap: 12px;
    max-width: 92%;
}

.creator-category {
    color: #ffb703;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.card-top h3 {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.4rem);
}

.card-top p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.creator-meta {
    display: flex;
    justify-content: flex-start;
}

.like-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.like-btn.liked {
    transform: scale(1.08);
    background: linear-gradient(135deg, #ef476f 0%, #ffb703 100%);
}

.like-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.video-frame {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.card-actions {
    position: absolute;
    bottom: 26px;
    left: 24px;
    z-index: 2;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.card-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.card-links a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.card-links i {
    font-size: 1rem;
}

.action-btn {
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
}

.scroll-sentinel {
    height: 1px;
}

.loading-message {
    text-align: center;
    color: #d4d4d4;
    margin: 20px 0 40px;
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.empty-message {
    color: #d4d4d4;
    text-align: center;
    padding: 40px 20px;
    font-size: 1rem;
}

.navbar {
    background: linear-gradient(135deg, #0f0f0f 0%, #131313 100%);
    border-bottom: 1px solid rgba(255, 183, 3, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.logo {
    color: #ffb703;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #ffb703;
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.admin-link {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.filter-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px 20px;
}

.search-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: stretch;
}

.search-bar input,
.search-bar select {
    flex: 1;
    min-width: 220px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 12px 18px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.search-bar input:focus,
.search-bar select:focus {
    border-color: #ffb703;
    background: rgba(255, 255, 255, 0.09);
}

@media (max-width: 900px) {
    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-media iframe {
        min-height: 320px;
    }
}

@media (max-width: 760px) {
    .nav-container {
        padding: 18px 16px;
    }

    .creator-meta,
    .card-actions {
        flex-wrap: wrap;
    }

    .card-top {
        left: 16px;
        top: 16px;
        max-width: 90%;
    }

    .video-card {
        border-radius: 0;
    }
}

/* ===== SA TALENT HUB FEED STYLES ===== */

.feed-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.featured-slot {
    margin: 24px 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 24px;
    background: linear-gradient(180deg, rgba(255, 183, 3, 0.12), rgba(15, 15, 15, 0.95));
    border: 1px solid rgba(255, 183, 3, 0.18);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.featured-media iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.featured-copy {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.creator-tag {
    color: #ffb703;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.featured-card h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    color: #ffffff;
}

.featured-copy p {
    margin: 0;
    color: #dcdcdc;
    line-height: 1.85;
    font-size: 1rem;
}

.featured-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    padding: 14px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ffb703 0%, #ff9500 100%);
    color: #000;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn:hover {
    transform: translateY(-2px);
}

.video-feed {
    display: grid;
    gap: 20px;
}

.video-card {
    position: relative;
    min-height: 100vh;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 183, 3, 0.08), rgba(15, 15, 15, 0.96));
    border: 1px solid rgba(255, 183, 3, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 183, 3, 0.08), transparent 40%);
    pointer-events: none;
}

.card-top {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 2;
    display: grid;
    gap: 12px;
    max-width: 92%;
}

.creator-category {
    color: #ffb703;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-top h3 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.card-top p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.68;
}

.creator-meta {
    display: flex;
    justify-content: flex-start;
}

.like-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.like-btn.liked {
    transform: scale(1.06);
    background: linear-gradient(135deg, #ef476f 0%, #ffb703 100%);
}

.like-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.video-frame {
    width: 100%;
    height: 100vh;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.card-actions {
    position: absolute;
    bottom: 26px;
    left: 24px;
    z-index: 2;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: none;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
}

.scroll-sentinel {
    height: 1px;
}

.loading-message {
    text-align: center;
    color: #d4d4d4;
    margin: 20px 0 40px;
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.empty-message {
    color: #d4d4d4;
    text-align: center;
    padding: 40px 20px;
    font-size: 1rem;
}

.leaderboard-section,
.blog-section,
.profile-shell,
.admin-section,
.about-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.leaderboard-header,
.blog-header,
.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.leaderboard-header h1,
.blog-header h1,
.admin-panel-header h1,
.profile-header h1,
.about-panel h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.section-subtitle {
    margin: 8px 0 0;
    opacity: 0.8;
    font-size: 1rem;
}

.leaderboard-filter,
.admin-form {
    display: grid;
    gap: 14px;
    width: min(100%, 520px);
}

.leaderboard-filter input,
.leaderboard-filter select,
.admin-form input,
.admin-form textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 14px 18px;
    outline: none;
}

.leaderboard-filter button,
.admin-form button {
    width: fit-content;
}

.leaderboard-grid,
.related-grid,
.blog-grid,
.admin-table {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.leaderboard-card,
.blog-card,
.related-card,
.comment-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 183, 3, 0.15);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leaderboard-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 183, 3, 0.3);
    box-shadow: 0 28px 55px rgba(255, 183, 3, 0.15);
}

.leaderboard-card.rank-top-1,
.leaderboard-card.rank-top-2,
.leaderboard-card.rank-top-3 {
    border-color: rgba(255, 183, 3, 0.4);
}

/* Rank Badge Circle */
.rank-badge-circle {
    position: absolute;
    top: -8px;
    left: 16px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffb703, #ff9500);
    border: 3px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.3);
    z-index: 10;
}

/* Card Header Section - Creator Image */
.card-header-section {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.05), rgba(45, 152, 218, 0.05));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.creator-image-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 183, 3, 0.3);
    flex-shrink: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.creator-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card Info Section */
.card-info-section {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.creator-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.creator-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.tag {
    display: inline-block;
    background: rgba(255, 183, 3, 0.25);
    color: #ffb703;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag-secondary {
    display: inline-block;
    background: rgba(45, 152, 218, 0.25);
    color: #45d7ff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.creator-bio-text {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

/* Card Stats */
.card-stats-row {
    display: flex;
    gap: 20px;
    margin: 8px 0;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-icon {
    color: #ffb703;
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.75rem;
    text-transform: lowercase;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
}

.card-actions .btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.9rem;
}

/* Video Preview Section */
.card-video-section {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.video-preview-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 0;
    overflow: hidden;
    background: #000;
}

.video-preview-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 183, 3, 0.95);
    color: #000;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.4);
}

.video-play-btn:hover {
    background: #ffb703;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 183, 3, 0.5);
}

.video-platform-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
}

.leaderboard-thumb {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 280px;
    border-radius: 24px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    margin-bottom: 20px;
}

.leaderboard-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.40));
}

.leaderboard-thumb .play-overlay {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.leaderboard-card.open .leaderboard-thumb,
.leaderboard-thumb:hover {
    transform: translateY(-2px);
}

.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}

.video-modal.open {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    width: min(1100px, 100%);
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.video-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.leaderboard-rank {
    font-size: 2rem;
    font-weight: 900;
    color: #ffb703;
}

.leaderboard-content h2,
.blog-card h2,
.related-card h3 {
    margin: 0 0 12px;
}

.rank-info,
.blog-meta,
.profile-meta {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 12px;
    display: block;
}

.rank-stats,
.profile-stats {
    display: grid;
    gap: 16px;
    text-align: right;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.stat-value {
    color: #ffb703;
    font-size: 2.2rem;
    font-weight: 800;
}

.profile-shell .profile-header {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

.profile-photo img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.profile-info h1 {
    margin-bottom: 14px;
}

.profile-info .bio {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.profile-info .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.profile-info .social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
}

.video-container {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    min-height: 560px;
    border: 0;
}

.comments-section {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

.comments-list {
    display: grid;
    gap: 18px;
}

.comment-item {
    padding: 22px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.comment-header strong {
    color: #fff;
}

.comment-header span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.comment-form {
    display: grid;
    gap: 16px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    padding: 16px 18px;
}

.comment-status {
    color: #9bff9b;
    font-weight: 700;
}

.related-section h2 {
    margin-bottom: 24px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.related-card {
    display: grid;
    gap: 16px;
    text-decoration: none;
    color: inherit;
}

.related-card img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    min-height: 220px;
}

.admin-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.admin-form {
    display: grid;
    gap: 18px;
}

.admin-panel-header {
    align-items: center;
}

.form-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.admin-table {
    margin-top: 30px;
    border-radius: 24px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 20px;
    padding: 18px 24px;
    align-items: center;
}

.table-header {
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

.table-row:nth-child(odd) {
    background: rgba(255, 255, 255, 0.03);
}

.form-error {
    color: #ff9b9b;
}

.admin-success {
    color: #9bff9b;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-panel,
.contact-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
    margin-bottom: 24px;
}

.about-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 24px;
}

.about-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
    .featured-card,
    .profile-header {
        grid-template-columns: 1fr;
    }

    .leaderboard-card,
    .table-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .rank-stats {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .nav-container,
    .leaderboard-header,
    .admin-panel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-shell,
    .admin-section,
    .leaderboard-section,
    .blog-section,
    .about-section {
        padding: 24px 16px 60px;
    }

    .card-top,
    .card-actions {
        left: 16px;
        right: 16px;
    }

    .video-card {
        border-radius: 0;
    }

    .about-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive Leaderboard Cards */
    .leaderboard-grid {
        grid-template-columns: 1fr;
    }

    .card-header-section {
        height: 160px;
    }

    .creator-image-wrapper {
        width: 130px;
        height: 130px;
    }

    .card-info-section {
        padding: 16px 20px 20px;
        gap: 10px;
    }

    .creator-name {
        font-size: 1.3rem;
    }
}

/* ===== SITE FOOTER ===== */
.site-footer {
    background: var(--bg-dark);
    color: white;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* ===== CREATOR EDITORIAL CONTENT ===== */
.creator-editorial {
    display: grid;
    gap: 24px;
    margin: 28px 0 36px;
}

.editorial-note {
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.14) 0%, rgba(45, 152, 218, 0.12) 100%);
    border: 1px solid rgba(255, 183, 3, 0.25);
    border-radius: 24px;
    padding: 28px;
}

.editorial-note-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 183, 3, 0.16);
    color: #ffcf6b;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.editorial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 24px;
}

.editorial-card h3 {
    color: #ffb703;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.editorial-card p,
.editorial-note p {
    color: rgba(255, 255, 255, 0.92);
}

.editorial-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.editorial-checklist-item {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.comment-guidance {
    margin: 18px 0 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(45, 152, 218, 0.12);
    border: 1px solid rgba(45, 152, 218, 0.18);
    color: rgba(255, 255, 255, 0.88);
}

