@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(11, 11, 11) url("media/banner.png") center/cover no-repeat fixed;
    font-family: "Poppins", Arial, sans-serif;
    color: #ccc;
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body::before, body::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 186, 222, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

body::before {
    top: -50px;
    left: -50px;
}

body::after {
    bottom: -50px;
    right: -50px;
}

#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.5)
}

.coming-soon-container {
    padding: 3rem;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 90%;
    z-index: 10;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.logo {
    max-width: 500px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 186, 222, 0.3));
}

h1 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

h1 span {
    color: #00E8A5;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.loader {
    width: 45px;
    height: 45px;
    border: 3px solid rgba(255, 186, 222, 0.1);
    border-radius: 50%;
    border-top-color: #00E8A5;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .coming-soon-container {
        padding: 2rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.2rem;
    }
}