﻿.winners-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Hero Section */
.winners-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.winners-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.trophy-animation {
    font-size: 6em;
    color: #ffc107;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: 4em;
    font-weight: 900;
    margin: 0 0 20px 0;
    color: white;
}

.gradient-text {
    background: linear-gradient(45deg, #fff, #ffc107, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3em;
    font-weight: 900;
    color: #ffc107;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-label {
    font-size: 1.1em;
    color: white;
    font-weight: 600;
    margin-top: 10px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5em;
    font-weight: 900;
    color: white;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-text {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary {
    background: white;
    color: #28a745;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-secondary:hover {
    background: linear-gradient(135deg, #5568d3 0%, #653a8b 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

/* Winners Container */
.winners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 900;
    color: #333;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #ffc107;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Winner Card */
.winner-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.winner-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #ffc107;
}

.winner-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #212529;
    padding: 8px 45px;
    font-weight: 900;
    font-size: 0.9em;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.winner-badge.buy-it-now-winner {
    background: linear-gradient(135deg, #ff5722 0%, #f44336 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.6);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 87, 34, 0.6);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 87, 34, 0.9);
    }
}

.winner-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.winner-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.product-img {
    max-width: 100%;
    max-height: 250px;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.winner-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.winner-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.winner-name {
    font-size: 1.1em;
    font-weight: 700;
    color: #667eea;
    display: flex;
    align-items: center;
    gap: 8px;
}

.winner-date {
    font-size: 0.9em;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-title {
    font-size: 1.8em;
    font-weight: 800;
    color: #333;
    margin: 0 0 10px 0;
}

.product-subtitle {
    font-size: 1em;
    color: #6c757d;
    margin: 0 0 25px 0;
}

.winning-price-display {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.winning-price {
    text-align: center;
}

.price-label {
    display: block;
    font-size: 1em;
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 2.5em;
    font-weight: 900;
}

.price-value.winning {
    color: #1b5e20;
}

.buy-it-now-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
    margin-top: 12px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    animation: lightning 2s ease-in-out infinite;
}

.buy-it-now-badge i {
    font-size: 1.1em;
    animation: flash 1.5s ease-in-out infinite;
}

@keyframes lightning {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 152, 0, 0.7);
    }
}

@keyframes flash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.celebration-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(102, 126, 234, 0.6);
    }
}

.celebration-banner i {
    font-size: 1.3em;
}

/* View All Bids Button */
.view-bids-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.view-bids-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    text-decoration: none;
}

.view-bids-btn i {
    font-size: 1.1em;
}

/* Bottom CTA */
.bottom-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    margin-top: 40px;
}

.bottom-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.bottom-cta h2 {
    font-size: 3em;
    font-weight: 900;
    color: white;
    margin: 0 0 20px 0;
}

.bottom-cta p {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.cta-large {
    font-size: 1.4em;
    padding: 20px 50px;
}

/* View All Auctions Section */
.view-all-auctions-section {
    text-align: center;
    padding: 40px 20px 60px;
    background: #f8f9fa;
}

.view-all-auctions-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: #495057;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.view-all-auctions-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    text-decoration: none;
}

.view-all-auctions-link i {
    font-size: 1.2em;
}

.transparency-note {
    margin-top: 15px;
    color: #6c757d;
    font-size: 0.95em;
}

/* Responsive */
@media (max-width: 992px) {
    .winner-card {
        grid-template-columns: 1fr;
    }

    .winner-image {
        max-height: 300px;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .trophy-animation {
        font-size: 4em;
    }

    .stats-row {
        gap: 30px;
    }

    .stat-value {
        font-size: 2em;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .cta-title {
        font-size: 1.8em;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }


    .section-title {
        font-size: 1.8em;
    }

    .product-title {
        font-size: 1.3em;
    }
}
