:root {

    --lime: #DEF64A;
    --cyan: #04A8FF;
    --navy: #004970;
    --white: #fff;
    --glass: rgba(255, 255, 255, .15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body {

    background:
        linear-gradient(135deg,
            #DEF64A 0%,
            #04A8FF 45%,
            #004970 100%);

    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.container {
    width: calc(100vw - 80px);
    height: calc(100vh - 80px);

    display: flex;
    flex-direction: column;

    user-select: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 75px;
    height: 75px;
    border-radius: 24px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: var(--navy);
}

.logo-area h1 {
    font-size: 42px;
    font-weight: 800;
    color: white;
}

.logo-area p {
    font-size: 18px;
    color: #d8ffff;
}

.date {
    text-align: right;
    color: white;
}

.date h2 {
    font-weight: 600;
    font-size: 28px;
}

.date span {
    font-size: 20px;
    opacity: .85;
}

/* .hero {
    flex:1;
    margin-top: 20px;
    
    border-radius: 30px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, .15),
            rgba(255, 255, 255, .05));

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
    overflow: hidden;
} */

.hero {
    flex: 1;
    display: flex;
    align-items: stretch;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, .15),
            rgba(255, 255, 255, .05));
    overflow: hidden;

}

.video-box{
    width:60%;
    border-radius:24px;
    overflow:hidden;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
}

.video-box video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.time-box{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.time-box small {
    font-size: 28px;
    letter-spacing: 2px;
    color: #fff;
}

.time-box h1 {
    font-size: 140px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin: 10px 0;
}

.time-box p {
    font-size: 28px;
    color: #d8ffff;
}

.mosque {
    width: 450px;
    height: 100%;
    background: url("assets/mosque-bg.svg") center/contain no-repeat;
    opacity: .2;
}

.pray-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 30px;
    flex-shrink: 0;
}

.card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 24px;
    padding: 5px;
    text-align: center;
    transition: .3s;
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    margin-top: 10px;
}

.card span {
    font-size: 30px;
    font-weight: 700;
    color: white;
}

.active {
    background: white;
    transform: translateY(-8px);
}

.active h3 {
    color: #004970;
}

.active span {
    color: #04A8FF;
}

.card:hover {
    transform: translateY(-6px);
}

/* Info Section */
.info-section {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: auto;
    gap: 24px;
    margin-top: 30px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(18px);
    /* box-shadow:
        0 10px 30px rgba(0, 0, 0, .15); */
}

.card-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,
            #DEF64A,
            #04A8FF);
    color: white;
    font-size: 34px;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-content p {
    color: #eefcff;
    font-size: 25px;
    line-height: 1.0;
}

.quote blockquote {
    color: white;
    font-size: 32px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 10px;
}

.quote span {
    color: #DEF64A;
    font-weight: 600;
    font-size: 18px;
}

/* Popup Overlay */
.popup {

    position: fixed;

    inset: 0;

    background: rgba(0, 40, 70, .94);

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 9999;

    transition: .4s;
}

.hidden {

    opacity: 0;

    visibility: hidden;

}

.popup-content {

    text-align: center;

    color: white;

}

.popup p {

    font-size: 50px;

    letter-spacing: 3px;

}

.popup h1 {

    font-size: 80px;

    letter-spacing: 3px;

}

.popup h2 {

    margin-top: 10px;

    font-size: 200px;

    color: #DEF64A;

}

#popupCountdown {

    font-size: 140px;

}

.countdown {

    font-size: 250px;
    font-weight: 800;
    color: #DEF64A;

    margin: 30px 0;

}

.hidden {

    display: none;

}