*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
     background:
    linear-gradient(
        90deg,
        #012D1D 0%,
        #014426 45%,
        #01361F 100%
    );
        position:relative;
    font-family:'Cairo',sans-serif;
    background:#013220;
    min-height:100vh;
    color:white;
}
body::before{
    content:"X";
    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    font-size:650px;
    font-weight:700;
    line-height:1;

    color:transparent;
    -webkit-text-stroke:1px rgba(213,166,43,.12);

    z-index:0;
    pointer-events:none;
}
body::after{
    content:"";

    position:absolute;

    top:-10%;
    left:42%;

    width:220px;
    height:130%;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.25),
            rgba(0,0,0,.08)
        );

    transform:rotate(-22deg);

    pointer-events:none;
}



.page{
    position:relative;
    width:100%;
    height:100vh;
    position:relative;
    z-index:2;
}

.logo{
    position:absolute;
    top:25px;
    left:35px;
}

.logo img{
    width:210px;
}

.content{
    position:absolute;
    top:38%;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    width:100%;
}

.arabic-title{
    font-size:64px;
    font-weight:700;
    margin-bottom:0;
}

.english-title{
    font-size:42px;
    font-weight:500;
    margin-bottom:35px;
}

.services{
    display:inline-block;

    background:#D5A62B;

    padding:12px 45px;

    font-size:24px;
    font-weight:700;
    transition:all .3s ease;

    box-shadow:0 8px 18px rgba(0,0,0,.25);
}
.services:hover{
    transform:translateY(-3px);
    box-shadow:
        0 10px 30px rgba(213,166,43,.4);
}

.email{
    position:absolute;
    bottom:25px;
    width:100%;
    text-align:center;
    color:#D9D9D9;
    font-size:16px;
}

.coming-soon{
    position:absolute;

    top:185px;
    right:18%;

    color:#D5A62B;

    font-size:24px;
    font-weight:700;
}

#countdown{
    margin-top:40px;

    display:flex;
    justify-content:center;
    gap:15px;

    flex-wrap:wrap;
}

.time-box{
    width:90px;
    height:90px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.15);

    border-radius:12px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    backdrop-filter:blur(5px);
}

.time-box span{
    font-size:28px;
    font-weight:700;
    color:#D5A62B;
}

.time-box small{
    font-size:12px;
    color:#ddd;
}

/* Mobile Responsive */
@media screen and (max-width: 768px){

    .logo{
        top:20px;
        left:20px;
    }

    .logo img{
        width:120px;
    }

    .coming-soon{
        top:120px;
        right:20px;
        font-size:18px;
    }

    .content{
        top:35%;
        padding:0 20px;
    }

    .arabic-title{
        font-size:28px;
        line-height:1.4;
    }

    .english-title{
        font-size:20px;
        line-height:1.4;
        margin-bottom:20px;
    }

    .services{
        font-size:14px;
        padding:10px 20px;
    }

    #countdown{
        gap:10px;
        margin-top:25px;
    }

    .time-box{
        width:70px;
        height:70px;
    }

    .time-box span{
        font-size:20px;
    }

    .time-box small{
        font-size:10px;
    }

    .email{
        bottom:15px;
        font-size:12px;
        padding:0 15px;
    }
}

@media (max-width: 768px){

    .page{
        padding:20px;
    }

    /* Logo */

    .logo{
        position:relative;
        top:auto;
        left:auto;
        text-align:center;
        margin-top:10px;
    }

    .logo img{
        width:110px;
    }

    /* Coming Soon */

    .coming-soon{
        position:relative;
        top:auto;
        right:auto;

        text-align:center;

        margin-top:15px;
        margin-bottom:15px;

        font-size:18px;
    }

    /* Main Content */

    .content{
        position:relative;

        top:auto;
        left:auto;

        transform:none;

        width:100%;
        text-align:center;

        margin-top:20px;
    }

    .arabic-title{
        font-size:32px;
        line-height:1.4;
        margin-bottom:10px;
    }

    .english-title{
        font-size:22px;
        line-height:1.4;
        margin-bottom:20px;
    }

    .services{
        font-size:15px;
        padding:12px 20px;
    }

    /* Countdown */

    #countdown{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:12px;

        max-width:220px;
        margin:25px auto;
    }

    .time-box{
        width:100%;
        height:75px;
    }

    .time-box span{
        font-size:22px;
    }

    /* Email */

    .email{
        position:relative;

        bottom:auto;

        margin-top:30px;
        margin-bottom:20px;

        text-align:center;
        font-size:14px;
    }

    /* Reduce giant X */

    body::before{
        font-size:280px !important;
        opacity:.05;
    }
}

