*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html , body{
    height: 100%;
    width: 100%;
}

/* Hero Image */
.hero {
    height: 100vh;
    width: 100%;
    background: url("./winra-ipl-2026.png") no-repeat center center;
    background-size: cover;
    cursor: pointer;
}

/* Floating Signup Button */
.signup-btn {
    position: fixed;
    bottom: 25px;
    right: 20px;
    background: linear-gradient(145deg, #ffd700, #c79c00);
    color: black;
    padding: 14px 28px;
    border: 2px solid #926b09;
    border-radius: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.signup-btn:hover {
    transform: scale(1.08);
}

/* Mobile Image */
@media (max-width: 768px) {
    .hero {
        background: url("./winra-ipl-2026-mob.png") no-repeat center center;
        background-size: cover;
    }
}


