/* ===================== VARIABLES ===================== */
:root {
    --glass: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.18);
}

/* ===================== RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================== BODY ===================== */
body {
    font-family: "Cairo", sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* ===================== MAIN CONTAINER ===================== */
.container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1000px;
    padding: 60px;

    background: var(--glass);
    backdrop-filter: blur(14px);
    border-radius: 26px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);

    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* ===================== LEFT (LOGO) ===================== */
.left {
    display: flex;
    justify-content: center;
}

.logo-img {
    max-width: 260px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* ===================== RIGHT CONTENT ===================== */
.right {
    text-align: right;
}

.right h1 {
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 15px;
    word-spacing: 6px;

}

.right p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* ===================== COUNTDOWN ===================== */
.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;

}

.time-box {
    min-height: 120px;
    padding: 25px 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: linear-gradient(160deg,
            rgba(255, 255, 255, 0.22),
            rgba(255, 255, 255, 0.06));

    border-radius: 20px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-6px);
}

.time-box span {
    font-size: 36px;
    font-weight: 900;
}

.time-box small {
    font-size: 15px;
    opacity: 0.85;
}

/* ===================== NOTE ===================== */
.note {
    text-align: center;
    font-size: 18px;
    opacity: 0.9;
}



/* ===================== SOCIAL MEDIA ===================== */
.social-links {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-links a {
    width: 46px;
    height: 46px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.12);
    border: 1px solid var(--border);
    color: #fff;
    font-size: 18px;

    text-decoration: none;
    transition: all 0.35s ease;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.1);
    background: linear-gradient(135deg, #ffffff33, #ffffff11);
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center;
        background: none;
        border:none;


    }

    .right {
        text-align: center;
    }

    .right h1 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        word-spacing: 2px;

    }

    .right p {
        font-size: 13px;
        font-weight: 500;
    }

    .countdown {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .time-box {
        min-height: 30px;
        padding: 10px 5px;
    }


    .time-box span {
        font-size: 25px;
        font-weight: 700;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .countdown::-webkit-scrollbar {
        height: 6px;
    }

    .countdown::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }
}