/* winners.css */

/* --- Section Title (Hall of Fame) --- */
.section-title {
    text-align: center;
    font-size: 2em;
    color: #2c3e50; /* Dark blue-grey */
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title .fa-star {
    color: #f1c40f; /* Golden yellow for stars */
}

/* --- Spotlight Section (Winners) --- */
.spotlight-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #ffffff; /* White background for this section */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 25px;
}

.spotlight-card {
    background-color: #ecf0f1; /* Light grey card background */
    border-radius: 8px;
    padding: 5px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.spotlight-header {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #34495e; /* Slightly darker blue-grey */
}
.spotlight-header .fas {
    margin-right: 8px;
    color: #3498db; /* Default blue icon color, overridden for specific winners */
}

/* Specific winner card header icon colors */
.daily-winner .spotlight-header .fas { color: #f39c12; } /* Orange for daily */
.weekly-winner .spotlight-header .fas { color: #2ecc71; } /* Green for weekly */
.monthly-winner .spotlight-header .fas { color: #9b59b6; } /* Purple for monthly */

.spotlight-image {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto 10px auto;
    border-radius: 6px;
    border: 3px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.spotlight-info .player-name {
    font-weight: bold;
    font-size: 1.1em;
    color: #2c3e50;
    margin: 5px 0;
}

.spotlight-info .submission-detail {
    font-size: 0.9em;
    color: #555;
    margin: 3px 0;
}

.spotlight-info .date-info {
    font-size: 0.9em;
    color: #7f8c8d; /* Grey for dates */
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #bdc3c7; /* Light grey for placeholder text/icon */
    border: 2px dashed #dadedf;
    border-radius: 6px;
    margin-bottom: 10px;
}
.placeholder-content .placeholder-icon {
    margin-bottom: 10px;
}

/* --- Responsive adjustments for Winners Section elements --- */
@media (max-width: 992px) {
    .spotlight-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .spotlight-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .section-title {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .spotlight-card {
        margin-bottom: 15px;
    }
    .spotlight-image {
        max-width: 100%;
        max-height: none;
    }
    .section-title {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
}