* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background-color: #0D0D0D;
    color: #E5E5E5;
    user-select: none;
}

body {
    pointer-events: none;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    animation: fadeIn 1s ease;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 6rem;
    color: #A982FF;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
    user-select: text;
}

h2 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    user-select: text;
}

p {
    font-size: 1.1rem;
    color: #B0B0B0;
    max-width: 600px;
    margin-bottom: 30px;
    user-select: text;
}

.btn {
    display: inline-block;
    background-color: #A982FF;
    color: #0D0D0D;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    pointer-events: auto;
    user-select: none;
}

    .btn:hover {
        background-color: #C1A4FF;
        transform: scale(1.05);
    }

.glow {
    position: absolute;
    top: -100px;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(169,130,255,0.05) 0%, transparent 70%);
    transform: translateX(-50%);
    z-index: 0;
    filter: blur(40px);
    pointer-events: none;
}

.build-loader {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    user-select: none;
}

.build-block {
    width: 15px;
    height: 50px;
    background: linear-gradient(135deg, #5fa8f5, #2f85e0);
    border-radius: 4px;
    opacity: 0.6;
    animation: buildPulse 2.5s infinite;
    transform-origin: bottom;
    box-shadow: none;
    filter: none;
}

    .build-block:nth-child(1) {
        animation-delay: 0s;
    }

    .build-block:nth-child(2) {
        animation-delay: 0.4s;
    }

    .build-block:nth-child(3) {
        animation-delay: 0.8s;
    }

    .build-block:nth-child(4) {
        animation-delay: 1.2s;
    }

    .build-block:nth-child(5) {
        animation-delay: 1.6s;
    }

@keyframes buildPulse {
    0%, 100% {
        opacity: 0.4;
        height: 30px;
    }

    50% {
        opacity: 0.6;
        height: 50px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .build-block {
        width: 12px;
        height: 40px;
    }
}