/* ===== CHAMPIONS HALL OF FAME STYLES ===== */

/* Hero Section */
.champions-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, #ffd700, transparent),
        radial-gradient(2px 2px at 40% 70%, #ffed4e, transparent),
        radial-gradient(1px 1px at 90% 40%, #fff, transparent),
        radial-gradient(1px 1px at 50% 50%, #ffd700, transparent);
    background-repeat: repeat;
    background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px;
    animation: sparkle 8s linear infinite;
}

@keyframes sparkle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-icon {
    font-size: 6rem;
    color: #ffd700;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

@keyframes goldShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Champion Spotlight */
.champion-spotlight {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.spotlight-card {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: spotlight-rotate 4s linear infinite;
}

@keyframes spotlight-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spotlight-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.spotlight-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.spotlight-avatar {
    position: relative;
}

.solo-avatar-spotlight {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #ffd700;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.team-avatar-spotlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 200px;
}

.team-member-spotlight {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #ffd700;
}

.avatar-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

.spotlight-info {
    flex: 1;
    color: white;
}

.champion-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.champion-titles {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 2rem;
    font-weight: 600;
}

.champion-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Champions Gallery */
.champions-gallery {
    padding: 6rem 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
}

.champions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Champion Cards */
.champion-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.champion-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #ffd700;
}

.card-header {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.tournament-badge, .champion-type {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tournament-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid #ffd700;
}

.champion-type.solo {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.champion-type.team {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    border: 1px solid #007bff;
}

.card-avatar {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(145deg, #f8f9fa, #fff);
}

/* Team Avatar Grid */
.team-avatar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 200px;
    margin: 0 auto;
}

.team-member-card {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffd700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-members {
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

/* Solo Avatar */
.solo-avatar-card {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solo-avatar-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 2rem;
    color: white;
}

.solo-avatar-card:hover .avatar-overlay {
    opacity: 1;
}

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-content .champion-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.card-content .tournament-name {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.card-content .champion-description {
    color: #777;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tournament-date {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.card-actions {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    text-decoration: none;
    color: #1a1a2e;
}

.card-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.champion-card:hover .card-decoration {
    opacity: 0.3;
}

.trophy-icon {
    color: #1a1a2e;
    font-size: 1.5rem;
}

/* No Champions State */
.no-champions {
    text-align: center;
    padding: 4rem 0;
}

.empty-state {
    color: #666;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 2rem;
}

.empty-state h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.2rem;
}

/* ===== CHAMPION DETAILS PAGE ===== */

/* Detail Hero */
.champion-detail-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.detail-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.floating-trophies {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.trophy-float {
    position: absolute;
    color: rgba(255, 215, 0, 0.2);
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.trophy-float:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.trophy-float:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.trophy-float:nth-child(3) {
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 0.4;
    }
}

.back-button {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 3;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    color: white;
    text-decoration: none;
}

.detail-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.champion-profile {
    display: flex;
    align-items: center;
    gap: 4rem;
    color: white;
}

/* Team Formation */
.team-formation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 400px;
}

.team-member-detail {
    text-align: center;
}

.team-member-detail img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ffd700;
    margin-bottom: 1rem;
}

.member-name {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Solo Profile */
.solo-profile {
    position: relative;
    text-align: center;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 6px solid #ffd700;
    box-shadow: 0 0 100px rgba(255, 215, 0, 0.3);
}

.profile-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.profile-info {
    flex: 1;
}

.champion-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.champion-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tournament-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 3rem;
    font-weight: 600;
}

.tournament-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.detail-item i {
    color: #ffd700;
    font-size: 1.3rem;
}

/* Champion Story */
.champion-story {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.story-header {
    text-align: center;
    margin-bottom: 3rem;
}

.story-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.title-decoration {
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: #ffd700;
    font-size: 1.5rem;
}

.story-description {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.achievement-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.achievement-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.achievement-info h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.achievement-info p {
    color: #666;
    font-size: 1.1rem;
}

/* Victory Timeline */
.victory-timeline {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
}

.timeline-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ffd700, #ffed4e);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1a2e;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    margin: 0 2rem;
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.timeline-content span {
    font-size: 1rem;
    opacity: 0.8;
}

/* Team Showcase */
.team-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: 1.3rem;
    color: #666;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.member-showcase-card {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.member-showcase-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
}

.member-avatar-showcase {
    position: relative;
    margin-bottom: 2rem;
}

.member-avatar-showcase img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #ffd700;
}

.member-glow {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #ffd700;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .spotlight-content {
        flex-direction: column;
        text-align: center;
    }
    
    .champion-profile {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .champion-title {
        font-size: 2.5rem;
    }
    
    .tournament-title {
        font-size: 1.8rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-content {
        margin: 1rem 0 0 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .champions-grid {
        grid-template-columns: 1fr;
    }
    
    .team-formation {
        grid-template-columns: 1fr;
    }
    
    .tournament-details {
        grid-template-columns: 1fr;
    }
}