/* =========================================================
   GIVEAWAYS PAGE
========================================================= */

/* العنوان */

.giveaways-title {

    font-size: 58px;

    font-weight: 900;

    text-align: center;

    color: #ffffff;

    line-height: 1.2;

    margin-bottom: 50px;

    letter-spacing: -1px;
}

.giveaways-title span {

    color: #d4af37;

    text-shadow:
        0 0 18px rgba(212,175,55,0.22);
}

/* =========================================================
   COMING SOON BOX
========================================================= */

.coming-soon-box {

    position: relative;

    width: 100%;

    max-width: 1150px;

    min-height: 260px;

    margin: auto;

    border-radius: 30px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 50px 30px;

    background:
        linear-gradient(
            180deg,
            #15161b 0%,
            #0f1014 100%
        );

    border:
        1px solid rgba(212,175,55,0.10);

    transition: all 0.35s ease;
}

/* Glow */

.coming-soon-box::before {

    content: "";

    position: absolute;

    inset: -1px;

    border-radius: 30px;

    background:
        conic-gradient(
            from 0deg,
            transparent,
            rgba(212,175,55,0.65),
            rgba(240,205,98,0.9),
            rgba(212,175,55,0.65),
            transparent
        );

    animation:
        rotateBorder 7s linear infinite;

    opacity: 0.9;

    z-index: 0;
}

/* Inner Layer */

.coming-soon-box::after {

    content: "";

    position: absolute;

    inset: 2px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at top,
            rgba(212,175,55,0.10),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #15161b 0%,
            #0f1014 100%
        );

    z-index: 1;
}

/* Content */

.coming-soon-box * {

    position: relative;

    z-index: 2;
}

/* قريباً */

.soon-title {

    font-size: 76px;

    font-weight: 900;

    line-height: 1;

    margin-bottom: 20px;

    color: #f0cd62;

    text-shadow:
        0 0 22px rgba(240,205,98,0.22);
}

/* النص */

.soon-text {

    max-width: 720px;

    color: #d4d4d8;

    font-size: 21px;

    font-weight: 600;

    line-height: 1.9;

    font-family: 'Cairo', sans-serif;
}

/* Hover */

.coming-soon-box:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(212,175,55,0.22);

    box-shadow:
        0 0 45px rgba(212,175,55,0.14);
}

/* حركة */

@keyframes rotateBorder {

    from {

        transform:
            rotate(0deg);
    }

    to {

        transform:
            rotate(360deg);
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .giveaways-title {

        font-size: 38px;

        margin-bottom: 35px;
    }

    .coming-soon-box {

        min-height: 210px;

        padding: 35px 18px;

        border-radius: 24px;
    }

    .coming-soon-box::after {

        border-radius: 22px;
    }

    .soon-title {

        font-size: 54px;
    }

    .soon-text {

        font-size: 16px;

        line-height: 1.8;
    }
}