/* Winners Page Specific Styles */

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0F0F23 0%, #1A1B3E 50%, #2D1B69 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Winner Spotlight */
.winner-spotlight {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.spotlight-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, var(--card-bg) 50%);
    border-radius: var(--border-radius-lg);
    border: 2px solid #FFD700;
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: glow-gold 3s ease-in-out infinite alternate;
}

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

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.spotlight-content {
    position: relative;
    z-index: 2;
}

.win-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.currency {
    font-size: 2rem;
    color: #FFD700;
    font-weight: 800;
}

.amount {
    font-size: 4rem;
    color: #FFD700;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    margin-left: 0.5rem;
}

.win-details {
    margin-bottom: 2rem;
}

.win-details h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.win-details p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.win-details i {
    color: var(--primary-color);
}

.win-quote {
    position: relative;
    padding-left: 3rem;
}

.win-quote i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: var(--primary-color);
}

.win-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

.spotlight-image {
    position: relative;
    text-align: center;
}

.spotlight-image img {
    width: 100%;
    max-width: 300px;
    border-radius: var(--border-radius-lg);
    background: var(--gradient-warning);
}

.verified-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--gradient-success);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1A1B3E 0%, #0F0F23 100%);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.player-info h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.win-amount {
    background: var(--gradient-success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.testimonial-content p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.game-played {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-played img {
    width: 30px;
    height: 30px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-primary);
}

.game-played span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.win-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Trending Games Section */
.trending-games {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.trending-games h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.trending-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.trending-card.exclusive {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--card-bg) 50%);
}

.trending-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.trending-image {
    position: relative;
    height: 180px;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--gradient-primary);
}

.trend-position {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.exclusive-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.trending-info {
    padding: 1.5rem;
}

.trending-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.trending-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.trending-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.trending-stats span {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.trending-info button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
}

.trending-info button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Winner Statistics */
.winner-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1A1B3E 0%, #0F0F23 100%);
}

.winner-stats h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.stat-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warning);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--warning-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
}

.stat-info h3 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

/* Share Story Section */
.share-story {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.share-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.share-content h2 {
    margin-bottom: 1rem;
}

.share-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.share-form {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.share-form input,
.share-form select,
.share-form textarea {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem;
    color: var(--text-primary);
    font-family: inherit;
}

.share-form input:focus,
.share-form select:focus,
.share-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.share-form textarea {
    width: 100%;
    resize: vertical;
    margin-bottom: 2rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive Design for Winners */
@media (max-width: 1024px) {
    .spotlight-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .amount {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trending-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .spotlight-card {
        padding: 2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .win-quote p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .trending-card {
        margin-bottom: 1rem;
    }
    
    .trending-info {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-info h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}