/* =========================
   RESET
========================= */

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

body{
    background:#000;
    font-family:'Inter', sans-serif;
    overflow:hidden;
}

/* =========================
   SECTION
========================= */

.coming-section{
    position:relative;
    width:100%;
    height:100vh;

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

    overflow:hidden;

    background:#000;
}

/* =========================
   VIDEO
========================= */

.bg-video{
    position:absolute;

    top:50%;
    left:50%;

    width:100%;
    height:100%;

    object-fit:contain;

    transform:translate(-50%, -50%);

    opacity:.9;

    filter:
    contrast(1.1)
    brightness(1)
    saturate(1.1);

    z-index:1;
}

/* =========================
   OVERLAY
========================= */

.video-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at center,
        rgba(0,191,255,.12),
        transparent 45%
    ),

    linear-gradient(
        to bottom,
        rgba(0,0,0,.45),
        rgba(0,0,0,.75)
    );

    z-index:2;
}

/* =========================
   GLOW
========================= */

.glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:2;
}

.glow-1{
    width:350px;
    height:350px;

    background:#00bfff;

    top:-100px;
    right:-100px;

    opacity:.14;
}

.glow-2{
    width:300px;
    height:300px;

    background:#d5a93b;

    bottom:-100px;
    left:-100px;

    opacity:.1;
}

/* =========================
   CONTENT
========================= */

.coming-content{
    position:relative;
    z-index:3;

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

    padding:20px;

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

    text-align:center;

    animation:fadeUp 1.4s ease;
}

/* SMALL */

.coming-content span{
    color:#d5a93b;

    font-size:13px;

    letter-spacing:5px;

    font-weight:700;
}

/* TITLE */

.coming-content h1{
    margin-top:20px;

    font-size:140px;

    line-height:.9;

    text-transform:uppercase;

    font-family:'Anton', sans-serif;

    color:white;

    text-align:center;

    text-shadow:
    0 10px 40px rgba(0,0,0,.6);
}

/* TEXT */

.coming-content p{
    margin-top:25px;

    max-width:650px;

    color:#d1d1d1;

    font-size:18px;

    line-height:1.8;

    text-align:center;
}

/* BUTTON */

.coming-btn{
    margin-top:45px;

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

    gap:18px;

    text-decoration:none;

    color:white;

    font-size:13px;
    font-weight:700;
    letter-spacing:3px;

    transition:.4s;
}

/* CIRCLE */

.circle{
    width:58px;
    height:58px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.25);

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

    font-size:24px;

    transition:.4s;

    backdrop-filter:blur(10px);

    background:rgba(255,255,255,.04);
}

.coming-btn:hover .circle{
    background:#00bfff;
    color:black;
    border-color:#00bfff;

    transform:rotate(45deg);
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(80px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .coming-content h1{
        font-size:72px;
    }

    .coming-content p{
        font-size:15px;
    }

    .bg-video{
        width:120%;
        height:120%;
    }

}