* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100svh;
    color: white;
    text-align: center;
    position: relative;
    background: #0f172a;
}

.background {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100svh;
    background: linear-gradient(
        -45deg,
        #0f172a,
        #1e293b,
        #2563eb,
        #0ea5e9
    );
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    z-index: -2;
    overflow: hidden;
}

.background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 35px 35px;
    animation: floatDots 25s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatDots {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.container {
    width: 100%;
    max-width: 800px;
    min-height: 100svh;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-wrap: break-word;
}

.logo {
    margin-bottom: 35px;
}

.logo img {
    max-width: 280px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
}

h1 {
    font-size: clamp(2.2rem, 10vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 100%;
}

.subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 650px;
}

.launch-box {
    display: inline-block;
    max-width: 100%;
    padding: 18px 30px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-bottom: 35px;
    background: rgba(255,255,255,0.05);
}

.launch-box span {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.launch-box p {
    font-size: 1.1rem;
}

.socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    max-width: 100%;
}

.socials a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.socials a:hover {
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .container {
        padding: 30px 16px;
    }

    .logo img {
        max-width: 220px;
    }

    .socials {
        flex-direction: column;
        gap: 10px;
    }
}

*,
*::before,
*::after {
    max-width: 100vw;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: clip;
}

.container {
    max-width: 100%;
    width: 100%;
}

img {
    max-width: 100%;
}