 :root {
        --gold: #FFD700;
        --gold-dark: #FFA500;
        --silver: #C0C0C0;
        --silver-dark: #808080;
        --primary: #1a5490;
        --secondary: #2980b9;
        --purple: #667eea;
        --purple-dark: #764ba2;
    }

    /* Smooth Animations */
    * {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Section Background with Animation */
    #the-award {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        position: relative;
        overflow: hidden;
    }

    #the-award::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent);
        border-radius: 50%;
        top: -250px;
        right: -250px;
        animation: float 15s ease-in-out infinite;
    }

    #the-award::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(102, 126, 234, 0.1), transparent);
        border-radius: 50%;
        bottom: -200px;
        left: -200px;
        animation: float 12s ease-in-out infinite reverse;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(-30px, 30px) rotate(180deg); }
    }

    /* Gold Gradient Title */
    .section-title-gold {
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
        animation: shine 3s ease-in-out infinite;
    }

    @keyframes shine {
        0%, 100% { filter: brightness(1); }
        50% { filter: brightness(1.2); }
    }

    /* Title Underline Animation */
    .title-underline {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, var(--gold), var(--gold-dark));
        position: relative;
        overflow: hidden;
    }

    .title-underline::before {
        content: '';
        position: absolute;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.5);
        animation: slide 2s ease-in-out infinite;
    }

    @keyframes slide {
        0% { left: -50%; }
        100% { left: 150%; }
    }

    /* Award Cards */
    .award-card {
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }

    .award-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    .award-card:hover::before {
        left: 100%;
    }

    .award-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2) !important;
    }

    /* Gold Card for 2025 */
    .gold-card {
        background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
        border-top: 5px solid var(--gold);
    }

    .gold-card:hover {
        box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3) !important;
    }

    /* Silver Card for 2024 */
    .silver-card {
        background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
        border-top: 5px solid var(--silver);
    }

    .silver-card:hover {
        box-shadow: 0 25px 60px rgba(192, 192, 192, 0.3) !important;
    }

    /* Award Image Container */
    .award-img-container {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
    }

    .award-img {
        transition: transform 0.5s ease;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .award-img-container:hover .award-img {
        transform: scale(1.1) rotate(2deg);
    }

    /* Trophy Badge */
    .trophy-badge {
        width: 70px;
        height: 70px;
        position: absolute;
        top: -15px;
        right: -15px;
        z-index: 10;
        animation: bounce 2s ease-in-out infinite;
    }

    .trophy-badge-gold {
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    }

    .trophy-badge-silver {
        background: linear-gradient(135deg, var(--silver), var(--silver-dark));
        box-shadow: 0 10px 30px rgba(192, 192, 192, 0.5);
    }

    .trophy-badge i {
        animation: rotate-trophy 3s ease-in-out infinite;
    }

    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @keyframes rotate-trophy {
        0%, 100% { transform: rotate(0deg); }
        25% { transform: rotate(-15deg); }
        75% { transform: rotate(15deg); }
    }

    /* Year Badge */
    .year-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        padding: 10px 25px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        z-index: 5;
        animation: pulse 2s ease-in-out infinite;
    }

    .year-badge-gold {
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        color: white;
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    }

    .year-badge-silver {
        background: linear-gradient(135deg, var(--silver), var(--silver-dark));
        color: white;
        box-shadow: 0 5px 20px rgba(192, 192, 192, 0.4);
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    /* Judges Comments Card */
    .judges-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-left: 4px solid var(--gold);
        position: relative;
        overflow: hidden;
    }

    .judges-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
        animation: glow 2s ease-in-out infinite;
    }

    @keyframes glow {
        0%, 100% { box-shadow: 0 0 10px var(--gold); }
        50% { box-shadow: 0 0 20px var(--gold); }
    }

    .judges-card-silver::before {
        background: linear-gradient(to bottom, var(--silver), var(--silver-dark));
        animation: glow-silver 2s ease-in-out infinite;
    }

    @keyframes glow-silver {
        0%, 100% { box-shadow: 0 0 10px var(--silver); }
        50% { box-shadow: 0 0 20px var(--silver); }
    }

    /* Button Hover Effects */
    .btn-modern {
        position: relative;
        overflow: hidden;
        z-index: 1;
        font-weight: 600;
    }

    .btn-modern::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.5s, height 0.5s;
        z-index: -1;
    }

    .btn-modern:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-modern:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-modern i {
        transition: transform 0.3s ease;
    }

    .btn-modern:hover i {
        transform: translateX(5px);
    }

    /* Download Section */
    .download-gradient {
        background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
        position: relative;
        overflow: hidden;
    }

    .download-gradient::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
        border-radius: 50%;
        top: -150px;
        right: -150px;
        animation: rotate-slow 20s linear infinite;
    }

    @keyframes rotate-slow {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .download-btn {
        background: white;
        transition: all 0.3s ease;
        font-weight: 700;
    }

    .download-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .download-btn i {
        transition: transform 0.3s ease;
    }

    .download-btn:hover i {
        transform: scale(1.2) rotate(10deg);
    }

    /* Icon Float */
    .icon-float {
        animation: icon-float 3s ease-in-out infinite;
    }

    @keyframes icon-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .trophy-badge {
            width: 50px;
            height: 50px;
        }
        
        .trophy-badge i {
            font-size: 1.2rem;
        }

        .year-badge {
            font-size: 0.9rem;
            padding: 8px 20px;
        }
    }

    /* Smooth Scroll */
    html {
        scroll-behavior: smooth;
    }