@font-face {
    font-family: 'Rajdhani-Bold';
    src: url('../fonts/Rajdhani/Rajdhani-Bold.ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rajdhani-Regular';
    src: url('../fonts/Rajdhani/Rajdhani-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

h1{
    font-family: 'Rajdhani-Bold', sans-serif;
    color: #FFF;
    font-size: 106px;
    margin: 0;
}

h2{
    font-family: 'Rajdhani-Bold', sans-serif;
    color: #FFF;
    font-size: 56px;
}

p,span{
    font-family: 'Rajdhani-Regular', sans-serif;
    color: #FFF;
    font-size: 28px;
    margin-bottom: 50px;
}

.contact-link{
    color: #fff;
    text-decoration: none;
}

.contact-link:hover{
    text-decoration: underline;
}

body{
    max-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(0, 150, 255, .25),transparent 40%),
        radial-gradient(circle at bottom, rgba(128, 0, 255, .25),transparent 40%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #111827 100%);
}

body::before,
body::after{
    content: "";
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

body::before{
    background: #3b82f6;
    top: -100px;
    left: -100px;
}

body::after{
    background: #8b5cf6;
    bottom: -100px;
    right: -100px;
}

.wrapper{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon{
    text-align: center;
    width: 1600px;
}

.logo{
    width: 600px;
    margin: 50px 0;
}

.buttons{
    display: flex;
    justify-content: space-evenly;
}

.btn{
    font-family: 'Rajdhani-Bold', sans-serif;
    color: rgba(255, 255, 255, .8);
    font-size: 28px;
    background: rgba(255, 255, 255, .2);
    border: none;
    border-radius: 25px;
    padding: 10px 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(59, 130, 246, .35);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover{
    transform: translateY(-2px);

    box-shadow: 0 0 30px rgba(59, 130, 246, .5),
                0 0 60px rgba(59, 130, 246, .25);
}

dialog{
    border: none;
    padding: 0;
    background: transparent;
}

dialog::backdrop{
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(8px);
}

.modal-content{
    position: relative;
    width: min(1600px, 90vw);
    padding: 2rem;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(59, 130, 246, .2),
                0 0 60px rgba(59, 130, 246, .15);
}

.close-btn{
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
}

