
body {
    background: #f4f6fa;
    font-family: Segoe UI,sans-serif;
}

.banner {
    width: 100%;
    display: block;
}
@media(max-width:768px){

    .banner{
        height:auto;
        width:100%;
    }

}
.hero {
    background: linear-gradient(135deg,#fafafa,#edf3fb);
    padding: 30px 0;
}

.yoga-img {
     max-width:100%;
    max-height:500px;
    animation:yogaFloat 3s ease-in-out infinite,
    glow 4s linear infinite;
}
@keyframes glow{

    0%{
        filter:drop-shadow(0 0 5px rgba(255,193,7,.3));
    }

    50%{
        filter:drop-shadow(0 0 20px rgba(255,193,7,.7));
    }

    100%{
        filter:drop-shadow(0 0 5px rgba(255,193,7,.3));
    }

}
@keyframes yogaFloat{

    0%{
        transform:translateY(0px);
    }

    25%{
        transform:translateY(-10px);
    }

    50%{
        transform:translateY(0px);
    }

    75%{
        transform:translateY(10px);
    }

    100%{
        transform:translateY(0px);
    }

}
@media(max-width:768px){

    .yoga-img{
        max-height:250px;
        margin-bottom:20px;
    }

}

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

h1 {
    font-size: 72px;
    color: #a10f15;
    font-weight: 800;
}

h2 {
    font-size: 48px;
    font-weight: 700;
}

.year {
    background: #e53935;
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
}

.notice-pill {
    display: inline-block;
    background: #f0ca4c;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
}

.new-badge {
    max-width: 180px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    50% {
        transform: scale(1.08);
    }
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
}

    .countdown div {
        background: #fff;
        padding: 15px;
        min-width: 90px;
        border-radius: 18px;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

    .countdown span {
        display: block;
        font-size: 28px;
        font-weight: 700;
    }

.ticker {
    background: #fff3cd;
    padding: 12px;
    overflow: hidden;
}

.scroll {
    white-space: nowrap;
    display: inline-block;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.section-title {
    text-align: center;
    color: #a10f15;
    font-weight: 800;
    margin-bottom: 30px;
}

.date-card, .panel, .action-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .35s;
}

.date-card {
    padding: 25px;
    text-align: center;
    height: 100%;
    transition:.35s;
}

    .date-card:hover, .panel:hover, .action-card:hover {
        transform:translateY(-8px);
    box-shadow:0 18px 30px rgba(0,0,0,.15);
    }

    .date-card i {
        font-size: 32px;
        color: #a10f15;
        margin-bottom: 10px;
    }

.panel {
    padding: 30px;
}

.green {
    border-left: 6px solid #28a745;
    background: linear-gradient(135deg,#f5fff5,#ebfff0);
}

.red {
    border-left: 6px solid #dc3545;
    background: linear-gradient(135deg,#fff5f5,#fff0f0);
}

.action-card{

    display:block;
    text-align:center;
    text-decoration:none;

    padding:30px;

    background:#fff;

    border-radius:20px;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    color:#222;
}

.action-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 35px rgba(0,0,0,.15);

    color:#a10f15;
}

.action-card i{

    display:block;

    font-size:42px;

    margin-bottom:12px;
}

footer {
    background: #082f67;
    color: #fff;
    text-align: center;
    padding: 20px;
}

@media(max-width:768px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 24px;
    }

    .yoga-img {
        max-height: 260px;
    }

    .new-badge {
        max-width: 90px;
    }

    .countdown {
        flex-wrap: wrap;
    }
}

@media(max-width:768px){

    h1{
        font-size:38px;
    }

    h2{
        font-size:22px;
    }

    .session{
        font-size:16px;
    }

    .notice-pill{
        font-size:14px;
        padding:10px 15px;
    }

}
.countdown-wrapper{
    margin-top:25px;
    text-align:center;
}

.countdown-heading{
    display:inline-block;
    background:#fff;
    padding:10px 20px;
    border-radius:30px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    color:#a10f15;
    font-weight:700;
    margin-bottom:15px;
}

.countdown{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
}