* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#warp-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    letter-spacing: 12px;
    color: #ffffff;
    line-height: 1;
    animation: fadeUp 1.2s ease forwards;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.15),
                 0 0 80px rgba(255, 255, 255, 0.08);
}

.tagline {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.3s forwards;
}

.enter-btn {
    margin-top: 24px;
    padding: 16px 48px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.6s forwards;
}

.enter-btn:hover {
    background: #ffffff;
    color: #000000;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}