body {
    font-family: 'Hind Siliguri', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/hero.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}
.event-card {
    transition: all 0.3s;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.event-card img {
    height: 200px;
    object-fit: cover;
}
.countdown {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 15px;
}
.btn-register {
    background: #ff6b6b;
    color: white;
    padding: 15px 40px;
    font-size: 1.5rem;
    border-radius: 50px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}