/**
 * Hall of Fame - Shared Styles
 * Path: /otherLinks/mainFiles/css/hall-of-fame.css
 * Modern 2025 design with animations, glassmorphism, and premium feel
 */

/* === CSS Variables === */
:root {
    --hof-gold: #fbbf24;
    --hof-gold-dark: #f59e0b;
    --hof-gold-glow: rgba(251, 191, 36, 0.4);
    --hof-silver: #94a3b8;
    --hof-bronze: #cd7f32;
    --hof-bg: #08080c;
    --hof-card: rgba(255, 255, 255, 0.03);
    --hof-card-hover: rgba(255, 255, 255, 0.06);
    --hof-border: rgba(255, 255, 255, 0.08);
    --hof-text: #ffffff;
    --hof-text-muted: #a1a1aa;
    --hof-gradient: linear-gradient(135deg, var(--hof-gold), var(--hof-gold-dark));
    --hof-glass: rgba(255, 255, 255, 0.05);
    --hof-glass-border: rgba(255, 255, 255, 0.1);
}

/* === Base Styles === */
.hof-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    min-height: 100vh;
}

/* === Animated Background === */
.hof-bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.hof-bg-effects::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
    animation: hofRotate 60s linear infinite;
}

.hof-bg-effects::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: hofPulse 8s ease-in-out infinite;
}

@keyframes hofRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes hofPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* === Header === */
.hof-header {
    text-align: center;
    margin-bottom: 50px;
    animation: hofFadeInUp 0.6s ease-out;
}

.hof-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--hof-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hof-badge-icon {
    font-size: 1rem;
    animation: hofBounce 2s ease-in-out infinite;
}

@keyframes hofBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.hof-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--hof-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px var(--hof-gold-glow);
}

.hof-subtitle {
    color: var(--hof-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === Navigation === */
.hof-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: hofFadeInUp 0.6s ease-out 0.1s backwards;
}

.hof-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--hof-glass);
    border: 1px solid var(--hof-glass-border);
    border-radius: 50px;
    color: var(--hof-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hof-nav a:hover {
    border-color: var(--hof-gold);
    color: var(--hof-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.15);
}

.hof-nav a.active {
    background: var(--hof-gradient);
    color: #000;
    border-color: transparent;
    font-weight: 600;
}

/* === Section Styles === */
.hof-section {
    margin-bottom: 60px;
    animation: hofFadeInUp 0.6s ease-out backwards;
}

.hof-section:nth-child(2) { animation-delay: 0.2s; }
.hof-section:nth-child(3) { animation-delay: 0.3s; }
.hof-section:nth-child(4) { animation-delay: 0.4s; }
.hof-section:nth-child(5) { animation-delay: 0.5s; }

.hof-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--hof-border);
}

.hof-section-icon {
    width: 55px;
    height: 55px;
    background: var(--hof-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 30px var(--hof-gold-glow);
}

.hof-section-title h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--hof-text);
    margin: 0 0 5px 0;
}

.hof-section-title p {
    color: var(--hof-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* === Top 3 Podium === */
.hof-top3 {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    align-items: end;
}

.hof-champion {
    background: var(--hof-card);
    border: 1px solid var(--hof-border);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.hof-champion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--hof-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.hof-champion:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hof-champion:hover::before {
    opacity: 1;
}

/* First Place */
.hof-champion.first {
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.12) 0%, var(--hof-card) 100%);
    border-color: rgba(251, 191, 36, 0.3);
    padding: 40px 25px;
}

.hof-champion.first::before {
    opacity: 1;
    height: 4px;
}

/* Second Place */
.hof-champion.second {
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.1) 0%, var(--hof-card) 100%);
    border-color: rgba(148, 163, 184, 0.2);
}

/* Third Place */
.hof-champion.third {
    background: linear-gradient(180deg, rgba(205, 127, 50, 0.1) 0%, var(--hof-card) 100%);
    border-color: rgba(205, 127, 50, 0.2);
}

/* Rank Badge */
.hof-rank-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.first .hof-rank-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    top: -22px;
    animation: hofCrown 3s ease-in-out infinite;
}

@keyframes hofCrown {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(255, 215, 0, 0.6); }
}

.second .hof-rank-badge {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #333;
}

.third .hof-rank-badge {
    background: linear-gradient(135deg, #cd7f32, #daa520);
    color: #fff;
}

/* Champion Image */
.hof-champion-image {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    margin: 20px auto;
    overflow: hidden;
    border: 3px solid var(--hof-border);
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.first .hof-champion-image {
    width: 110px;
    height: 110px;
    border-color: var(--hof-gold);
    border-width: 4px;
}

.hof-champion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hof-champion-image .hof-icon {
    font-size: 2.5rem;
}

.first .hof-champion-image .hof-icon {
    font-size: 3rem;
}

.hof-champion-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hof-text);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.first .hof-champion-name {
    font-size: 1.2rem;
}

.hof-champion-meta {
    font-size: 0.8rem;
    color: var(--hof-text-muted);
    margin-bottom: 15px;
}

.hof-champion-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.hof-stat {
    text-align: center;
}

.hof-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hof-gold);
}

.first .hof-stat-value {
    font-size: 1.4rem;
}

.hof-stat-label {
    font-size: 0.7rem;
    color: var(--hof-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === List View (4-10) === */
.hof-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hof-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--hof-card);
    border: 1px solid var(--hof-border);
    border-radius: 16px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.hof-list-item:hover {
    border-color: var(--hof-gold);
    transform: translateX(5px);
    background: var(--hof-card-hover);
}

.hof-list-rank {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--hof-text-muted);
    flex-shrink: 0;
}

.hof-list-image {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--hof-border);
}

.hof-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hof-list-image .hof-icon {
    font-size: 1.3rem;
}

.hof-list-info {
    flex: 1;
    min-width: 0;
}

.hof-list-name {
    font-weight: 600;
    color: var(--hof-text);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hof-list-meta {
    font-size: 0.8rem;
    color: var(--hof-text-muted);
}

.hof-list-points {
    font-weight: 700;
    color: var(--hof-gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* === Monthly Champions === */
.monthly-current {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(245, 158, 11, 0.08));
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.monthly-current::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
    animation: hofPulse 4s ease-in-out infinite;
}

.monthly-current-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--hof-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(251, 191, 36, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
}

.monthly-current-image {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--hof-gold);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.monthly-current-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.monthly-current-image .hof-icon {
    font-size: 2.5rem;
}

.monthly-current-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.monthly-current-info h4 {
    font-size: 1.3rem;
    color: var(--hof-text);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.monthly-current-info p {
    color: var(--hof-text-muted);
    margin: 0 0 12px 0;
    font-size: 0.95rem;
}

.monthly-current-stat {
    display: inline-block;
    background: var(--hof-gradient);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Monthly Grid */
.monthly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.monthly-winner-card {
    background: var(--hof-card);
    border: 1px solid var(--hof-border);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.monthly-winner-card:hover {
    border-color: var(--hof-gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.monthly-winner-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--hof-gold);
    flex-shrink: 0;
}

.monthly-winner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.monthly-winner-image .hof-icon {
    font-size: 1.8rem;
}

.monthly-winner-info {
    flex: 1;
    min-width: 0;
}

.monthly-winner-month {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--hof-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.monthly-winner-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hof-text);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.monthly-winner-meta {
    font-size: 0.8rem;
    color: var(--hof-text-muted);
}

.monthly-winner-stat {
    font-size: 0.85rem;
    color: var(--hof-text-muted);
    margin-top: 5px;
}

.monthly-winner-trophy {
    font-size: 1.8rem;
    flex-shrink: 0;
    opacity: 0.9;
}

/* === Cards Grid (Win Rate, Most Voted) === */
.hof-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
}

.hof-card {
    background: var(--hof-card);
    border: 1px solid var(--hof-border);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.hof-card:hover {
    border-color: var(--hof-gold);
    transform: translateY(-3px);
}

.hof-card-image {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--hof-border);
}

.hof-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hof-card-image .hof-icon {
    font-size: 1.4rem;
}

.hof-card-info {
    flex: 1;
    min-width: 0;
}

.hof-card-name {
    font-weight: 600;
    color: var(--hof-text);
    margin-bottom: 4px;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hof-card-stat {
    font-size: 0.9rem;
    color: var(--hof-gold);
    font-weight: 600;
}

.hof-card-label {
    font-size: 0.75rem;
    color: var(--hof-text-muted);
}

/* === Call to Action === */
.hof-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.hof-cta::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    animation: hofRotate 30s linear infinite;
}

.hof-cta h3 {
    font-size: 1.8rem;
    color: var(--hof-text);
    margin-bottom: 12px;
    position: relative;
}

.hof-cta p {
    color: var(--hof-text-muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
}

.hof-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    background: var(--hof-gradient);
    color: #000;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px var(--hof-gold-glow);
}

.hof-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

/* === Empty State === */
.hof-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--hof-text-muted);
}

.hof-empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.hof-empty p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* === Share Buttons === */
.hof-share {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hof-share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.hof-share-btn.twitter {
    background: rgba(29, 161, 242, 0.15);
    color: #1da1f2;
    border: 1px solid rgba(29, 161, 242, 0.3);
}

.hof-share-btn.twitter:hover {
    background: #1da1f2;
    color: #fff;
}

.hof-share-btn.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.hof-share-btn.whatsapp:hover {
    background: #25d366;
    color: #fff;
}

.hof-share-btn.copy {
    background: rgba(255, 255, 255, 0.08);
    color: var(--hof-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hof-share-btn.copy:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--hof-text);
}

/* === Animations === */
@keyframes hofFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hofShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.hof-champion.first::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: hofShine 3s infinite;
}

/* === Responsive === */
@media (max-width: 768px) {
    .hof-page {
        padding: 30px 15px 60px;
    }
    
    .hof-top3 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hof-champion.first {
        order: -1;
    }
    
    .hof-nav {
        gap: 8px;
    }
    
    .hof-nav a {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .hof-cards-grid,
    .monthly-grid {
        grid-template-columns: 1fr;
    }
    
    .monthly-current {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px 30px;
    }
    
    .monthly-current-badge {
        top: 12px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .hof-section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .hof-share {
        flex-direction: column;
        align-items: center;
    }
    
    .hof-share-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* === Breadcrumb === */
.hof-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--hof-text-muted);
}

.hof-breadcrumb a {
    color: var(--hof-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.hof-breadcrumb a:hover {
    color: var(--hof-gold);
}

.hof-breadcrumb-sep {
    opacity: 0.5;
}

.hof-breadcrumb-current {
    color: var(--hof-gold);
}

/* === Toast Notification === */
.hof-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--hof-gradient);
    color: #000;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s ease;
}

.hof-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* =============================================
   LIGHT THEME
   ============================================= */
[data-theme="light"] {
    --hof-bg: #f6f8fa;
    --hof-card: rgba(255, 255, 255, 0.9);
    --hof-card-hover: rgba(255, 255, 255, 1);
    --hof-border: rgba(0, 0, 0, 0.1);
    --hof-text: #1f2328;
    --hof-text-muted: #57606a;
    --hof-glass: rgba(255, 255, 255, 0.7);
    --hof-glass-border: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hof-champion {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .hof-champion.first {
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.08) 0%, #fff 100%);
}

[data-theme="light"] .hof-champion.second {
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.08) 0%, #fff 100%);
}

[data-theme="light"] .hof-champion.third {
    background: linear-gradient(180deg, rgba(205, 127, 50, 0.08) 0%, #fff 100%);
}

[data-theme="light"] .hof-champion:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hof-champion-image {
    background: linear-gradient(135deg, #eef1f5, #f6f8fa);
    border-color: #d1d9e0;
}

[data-theme="light"] .first .hof-champion-image {
    border-color: var(--hof-gold);
}

[data-theme="light"] .hof-list-item {
    background: #fff;
    border-color: #d1d9e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .hof-list-item:hover {
    background: #f6f8fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hof-list-image,
[data-theme="light"] .hof-card-image {
    background: linear-gradient(135deg, #eef1f5, #f6f8fa);
    border-color: #d1d9e0;
}

[data-theme="light"] .hof-card {
    background: #fff;
    border-color: #d1d9e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .hof-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .monthly-current {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(245, 158, 11, 0.04));
    border-color: rgba(251, 191, 36, 0.25);
}

[data-theme="light"] .monthly-winner-card {
    background: #fff;
    border-color: #d1d9e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .monthly-winner-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .monthly-winner-image {
    background: linear-gradient(135deg, #eef1f5, #f6f8fa);
}

[data-theme="light"] .hof-cta {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(245, 158, 11, 0.03));
    border-color: rgba(251, 191, 36, 0.2);
}

[data-theme="light"] .hof-nav a {
    background: rgba(0, 0, 0, 0.03);
    border-color: #d1d9e0;
    color: #57606a;
    backdrop-filter: none;
}

[data-theme="light"] .hof-nav a:hover {
    border-color: var(--hof-gold);
    color: var(--hof-gold);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.1);
}

[data-theme="light"] .hof-nav a.active {
    color: #000;
}

[data-theme="light"] .hof-share-btn.twitter {
    background: rgba(29, 161, 242, 0.08);
    border-color: rgba(29, 161, 242, 0.2);
}

[data-theme="light"] .hof-share-btn.whatsapp {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.2);
}

[data-theme="light"] .hof-share-btn.copy {
    background: rgba(0, 0, 0, 0.03);
    border-color: #d1d9e0;
    color: #57606a;
}

[data-theme="light"] .hof-section-header {
    border-bottom-color: #d1d9e0;
}

[data-theme="light"] .hof-section-icon {
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}