.season-closed-section{
    background: linear-gradient(180deg,#eef9ff,#ffffff);
    padding:90px 20px;
    min-height:70vh;
    display:flex;
    align-items:center;
}

.season-card{
    max-width:850px;
    margin:auto;
    background:#fff;
    padding:60px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.season-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#009dff,#00c8ff,#00d67a);
}

.season-icon{
    width:100px;
    height:100px;
    margin:0 auto 25px;
    background:#e8f8ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:48px;
}

.season-badge{
    display:inline-block;
    background:#ffe8c7;
    color:#ff7b00;
    padding:8px 22px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:25px;
    font-size:14px;
    letter-spacing:.5px;
}

.season-card h1{
    font-size:48px;
    color:#1c2d41;
    margin-bottom:25px;
    font-weight:700;
}

.season-text{
    font-size:19px;
    line-height:1.8;
    color:#5d6b7b;
    margin-bottom:20px;
}

.season-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 40px;
    background:#ff7b00;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.season-btn:hover{
    background:#ff6200;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,123,0,.35);
}

@media(max-width:768px){

    .season-card{
        padding:40px 25px;
    }

    .season-card h1{
        font-size:34px;
    }

    .season-text{
        font-size:17px;
    }

    .season-icon{
        width:80px;
        height:80px;
        font-size:38px;
    }
}