body {
    background: black;
    min-height:100vh;
    display:flex;
    align-items:center;
}

.glass-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius:20px;
    padding:40px;
    color:white;
    box-shadow:0 25px 50px rgba(0,0,0,0.3);
}

.contest-card {
    cursor:pointer;
    border-radius:15px;
    padding:15px;
    text-align:center;
    transition:0.3s;
    background: rgba(255,255,255,0.2);
}

.contest-card:hover {
    transform:scale(1.05);
}

.contest-card.active {
    background:#ff6a00;
    color:white;
}

.step { display:none; }
.step.active { display:block; }
.event-logo {
    max-height: 150px;
    object-fit: contain;
}

.sponsor-logo {
    /* max-height: 60px; */
    object-fit: contain;
    transition: 0.3s;
    
}

.sponsor-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .event-logo {
        /* max-height: 70px; */
    }
}

.btn-gradient {
    background: linear-gradient(45deg,#ff6a00,#ee0979);
    border:none;
    color:white;
}