/* Super Ace Winner Page Styles */
.super-ace-winner-page {
    max-width: 1000px;
    margin: 0 auto;
}

.winner-header {
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.player-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.player-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #ffd700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.player-photo-placeholder {
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.1);
    border: 3px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
}

.player-name {
    color: #ffd700;
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.player-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

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

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.stat-value a {
    color: #ffd700;
    text-decoration: none;
}

.stat-value a:hover {
    text-decoration: underline;
}

.ace-details-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ace-details-card h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.ace-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-item i {
    color: #ffd700;
    width: 20px;
    text-align: center;
}

.media-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
}

.media-section h4 {
    color: #ffd700;
}

.media-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.media-container img,
.media-container video {
    width: 100%;
    height: auto;
    display: block;
}

.flippy-comment-section {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    border-radius: 0.5rem;
    padding: 2rem;
}

.flippy-comment-section .blockquote {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.flippy-comment-section .blockquote-footer {
    color: #ffd700;
}

.share-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 1rem;
    padding: 2rem;
}

.share-section h4 {
    color: #ffd700;
}

.share-buttons .btn {
    min-width: 140px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .winner-header {
        padding: 1.5rem;
    }
    
    .winner-header h1 {
        font-size: 2rem;
    }
    
    .player-photo,
    .player-photo-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .player-name {
        font-size: 2rem;
    }
    
    .player-stats {
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .player-info-card,
    .ace-details-card,
    .share-section {
        padding: 1.5rem;
    }
    
    .share-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
}