* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    min-height: 100vh;
    color: #eaeaea;
    background: #000;
}

#enter-screen {
    position: fixed;
    inset: 0;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
}

#enter-screen h1 {
    color: #fff;
    font-size: 3rem;
    text-shadow: 0 0 8px #fff, 0 0 16px #fff;
    animation: flicker 2s infinite;
    text-align: center;
}

@keyframes flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
    }

    20%,
    22%,
    24%,
    55% {
        opacity: 0.8;
    }
}

#main {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#background-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 36px;
    max-width: 650px;
    width: 90%;
    height: 650px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.heading {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 14px;
    transform: translateY(35px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    max-width: 250px;
    margin: -40px auto 30px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.heading-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 0 8px #fff, 0 0 16px #fff;
}

.heading:hover {
    transform: rotate(6deg) translateY(35px) scale(1.05);
}

.text p {
    background: rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    max-width: 500px;
    margin: 15px auto;
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.text p:hover {
    transform: translateY(-4px) scale(1.05);
}

.socials {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 22px;
}

.socials a {
    font-size: 1.8rem;
    color: #eaeaea;
    transition: transform 0.2s ease, color 0.2s ease;
}

.socials a:hover {
    transform: translateY(-4px) scale(1.05);
}

.socials .discord:hover {
    color: #7289da;
}

.socials .roblox:hover {
    color: #0099ff;
}

.socials .tiktok:hover {
    color: #ff0050;
}

.footer {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: #ffffff;
    -webkit-text-stroke: 0.8px #000000;
    text-stroke: 0.8px #000000;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
}
