* {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
}

body {
    overflow: hidden;
    background: black;
}

/* VIDEO */
.bg-video {
    position: fixed;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

/* BLUR OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(12px);
    background: rgba(0,0,0,0.6);
    transition: 1s;
}

.overlay.unblur {
    backdrop-filter: blur(0px);
    background: rgba(0,0,0,0.2);
}

/* INTRO */
.intro {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enter-text {
    color: white;
    font-size: 28px;
    letter-spacing: 2px;
    cursor: pointer;
}

.fade-out {
    opacity: 0;
    transition: 1s;
}

/* MAIN */
.hidden {
    display: none;
}

.main {
    position: absolute;
    inset: 0;
}

.main-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
    animation: fadeIn 1.5s ease;
}

.links a {
    margin: 10px;
    color: white;
    text-decoration: none;
}

.links a:hover {
    color: red;
}

/* MUSIC */
.music {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

#player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

/* MAIN CARD */
.main-card {
    position: relative;
    width: 420px;
    padding: 30px;
    border-radius: 22px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(18px);
    color: white;
}

/* ROTER ANIMIERTER RAND */
.glow-border::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,0,0,0.25),
        transparent
    );
    animation: glowMove 6s linear infinite;
    pointer-events: none;
}

@keyframes glowMove {
    0% { filter: blur(6px); opacity: 0.4; }
    50% { filter: blur(8px); opacity: 0.6; }
    100% { filter: blur(6px); opacity: 0.4; }
}

/* DISCORD BOX */
.discord-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(0,0,0,0.4);
    margin-bottom: 18px;
}

/* AVATAR */
.discord-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

/* TEXT */
.discord-name {
    font-size: 18px;
    font-weight: 600;
}

.discord-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    opacity: 0.85;
}

.discord-custom {
    font-size: 13px;
    opacity: 0.7;
}

/* STATUS DOT */
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* SOCIALS */
.social-box {
    display: flex;
    justify-content: space-around;
    padding: 14px;
    border-radius: 16px;
    background: rgba(0,0,0,0.35);
}

.social {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s;
}

.social:hover {
    opacity: 1;
    color: red;
}

.hidden {
    display: none;
}

