/* =======================
   WINNERS.HTML SPECIFIC STYLES
   ======================= */

/* Winners Hero Section */
.winners-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #FFD700 100%);
    position: relative;
    overflow: hidden;
}

.winners-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
}

.winners-hero .floating-icons {
    animation: goldShimmer 4s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.winners-hero .floating-icons i {
    color: rgba(255, 215, 0, 0.2);
    font-size: 3.5rem;
}

.winners-hero .floating-icons i:nth-child(odd) {
    animation: trophy 3s ease-in-out infinite;
}

@keyframes trophy {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Winners Intro Section */
.winners-intro {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 6rem 0;
    position: relative;
}

.winners-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="trophy-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><text x="25" y="25" text-anchor="middle" font-size="20" fill="rgba(255,255,255,0.05)">🏆</text></pattern></defs><rect width="100%" height="100%" fill="url(%23trophy-pattern)"/></svg>');
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.intro-content::before {
    content: '🎉';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    background: white;
    border-radius: 50%;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
}

.intro-content h2 {
    color: #333;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-content p {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.8;
}

/* Player Testimonials Timeline */
.player-testimonials {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 8rem 0;
    position: relative;
}

.player-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
}
.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}


.winner-quote p {
	padding: 10px;
	font-size: 1rem;

}


.winners-grid::after {
    content: '🏁';
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    font-size: 3rem;
    animation: finish 2s ease-in-out infinite;
}

@keyframes finish {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.winner-story {
    margin-bottom: 4rem;
    animation: slideInTimeline 0.8s ease-out;
}

@keyframes slideInTimeline {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.winner-story:nth-child(odd) .winner-content {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(79, 172, 254, 0.3);
}

.winner-story:nth-child(even) .winner-content {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(0, 242, 254, 0.3);
}

.winner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.winner-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.winner-avatar i {
    font-size: 4rem;
    color: #4facfe;
    background: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.winner-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.winner-badge i.fa-trophy {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    animation: trophySpin 3s linear infinite;
}

@keyframes trophySpin {
    0%, 90%, 100% { transform: rotate(0deg); }
    5%, 15% { transform: rotate(10deg); }
    10% { transform: rotate(-10deg); }
}

.winner-badge i.fa-star {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.winner-badge i.fa-medal {
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
}

.winner-badge i.fa-gem {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.winner-badge i.fa-crown {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    animation: crownGlow 2s ease-in-out infinite alternate;
}

@keyframes crownGlow {
    from { box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4); }
    to { box-shadow: 0 5px 25px rgba(255, 215, 0, 0.8); }
}

.quote-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    animation: quoteFloat 3s ease-in-out infinite;
}

@keyframes quoteFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.winner-details {
    background: rgba(79, 172, 254, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.winner-game {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 10px;
}

.winner-game img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.winner-game span {
    font-weight: bold;
    color: #333;
}

.win-amount {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(67, 233, 123, 0.4);
    animation: winAmountPulse 2s ease-in-out infinite;
}

@keyframes winAmountPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Trending Games Leaderboard */
.trending-games {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    padding: 8rem 0;
    position: relative;
}

.trending-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.trending-leaderboard {
    position: relative;
    z-index: 2;
}

.trending-leaderboard::before {
    content: '🏆 TOP GAMES';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: leaderboardGlow 3s ease-in-out infinite alternate;
}

@keyframes leaderboardGlow {
    from { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4); }
    to { box-shadow: 0 10px 40px rgba(255, 215, 0, 0.7); }
}

.leaderboard-item {
    position: relative;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.leaderboard-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 3px 0 0 3px;
}

.leaderboard-item:nth-child(1)::before {
    background: linear-gradient(to bottom, #FFD700, #FFA500);
}

.leaderboard-item:nth-child(2)::before {
    background: linear-gradient(to bottom, #C0C0C0, #A9A9A9);
}

.leaderboard-item:nth-child(3)::before {
    background: linear-gradient(to bottom, #CD7F32, #B8860B);
}

.leaderboard-item:nth-child(n+4)::before {
    background: linear-gradient(to bottom, #ddd, #ccc);
}

.leaderboard-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.rank-number {
    position: relative;
}

.rank-number::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: rankGlow 2s ease-in-out infinite;
}

.leaderboard-item:nth-child(1) .rank-number::after {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, transparent 70%);
}

.leaderboard-item:nth-child(2) .rank-number::after {
    background: radial-gradient(circle, rgba(192, 192, 192, 0.6) 0%, transparent 70%);
}

.leaderboard-item:nth-child(3) .rank-number::after {
    background: radial-gradient(circle, rgba(205, 127, 50, 0.6) 0%, transparent 70%);
}

@keyframes rankGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.trending-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 2rem;
    position: relative;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leaderboard-item:hover .trending-image img {
    transform: scale(1.1);
}

.trending-content {
    flex: 1;
}

.trending-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.trending-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.trending-stats .stat i {
    color: #43e97b;
}

.trending-actions {
    margin-left: 2rem;
}

/* Share Story Section */
.share-story {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    padding: 8rem 0;
    position: relative;
}

.share-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.share-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.share-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.share-info::before {
    content: '📢';
    position: absolute;
    top: -30px;
    left: 3rem;
    font-size: 3rem;
    background: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.share-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(250, 112, 154, 0.1);
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 112, 154, 0.2);
}

.benefit i {
    font-size: 1.5rem;
    color: #fa709a;
}

.share-actions {
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.share-requirements {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.share-requirements h4 {
    color: #333;
    margin-bottom: 1rem;
}

.share-requirements ul {
    list-style: none;
    padding: 0;
}

.share-requirements li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.share-requirements li i {
    color: #43e97b;
    font-size: 0.9rem;
}

/* Winner Statistics */
.winner-stats {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 8rem 0;
    position: relative;
}

.winner-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stats-pattern)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #a8edea, #fed6e3);
    border-radius: 4px 4px 0 0;
}

.stat-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.stat-card:nth-child(even):hover {
    transform: translateY(-15px) rotate(-1deg);
}

.stat-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #333;
    transition: all 0.4s ease;
    position: relative;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(168, 237, 234, 0.4);
}

.stat-content .stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.stat-content .stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design for Winners */
@media (max-width: 768px) {
    .intro-content {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    .intro-content h2 {
        font-size: 2.2rem;
    }
    
    .winner-story {
        margin-bottom: 3rem;
    }
    
    .leaderboard-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .trending-image {
        margin: 0 0 1rem 0;
    }
    
    .trending-actions {
        margin: 1rem 0 0 0;
    }
    
    .share-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .share-benefits {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
}
