/* ==========================================================================
   LIGHT MODE AWARDS GRID DESIGN
   ========================================================================== */
   .awards-main-container {
    flex: 1;
    padding-top: 140px; 
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}

.awards-wrapper {
    max-width: 1100px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.awards-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    width: 100%;
}

/* Clean White Card Style */
.award-card {
    background: #ffffff;
    border: 2px solid transparent; /* Crucial: Prevents layout shifting on hover */
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
    /* Smoothly animate both the lift effect and the border color change */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    border-color: #db2777; /* The theme's magenta/pink color */
}

/* Pink Accent highlight for the Featured Top Award */
.award-card.featured .award-icon-box {
    color: goldenrod;
    background: #fdf2f8;
}

.award-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.award-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* Light Inner Container for Prizes */
.prize-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.prize-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #db2777; /* Warna merah jambu terang dari countdown */
    letter-spacing: 0.02em;
    display: block;
    margin: 4px 0;
}

.prize-item {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.prize-item.layout-medal {
    font-size: 0.95rem;
    color: #0f172a;
}

.award-scope {
    font-size: 0.8rem;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.award-scope i {
    color: #2563eb;
}


@media (max-width: 768px) {
    .awards-main-container { padding-top: 110px; padding-bottom: 50px; }
    .awards-title { font-size: 1.4rem; }
    .awards-grid { grid-template-columns: 1fr; }
    .award-name { min-height: auto; }
}