:root {
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #ffffff;
    /* Discord Blurple */
    --accent-glow: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    user-select: none;
}

/* Enter Overlay */
#enter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.8s ease;
}

#enter-overlay span {
    font-size: 1.2rem;
    color: #444;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

/* Main Content (Hidden initially) */
#main-content {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    filter: blur(10px);
}

/* Active State (Added by JS) */
body.entered #enter-overlay {
    opacity: 0;
    pointer-events: none;
}

body.entered #main-content {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Profile Card */
.profile-card {
    background: var(--card-bg);
    padding: 3rem 4rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Moving gradient border effect */
.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: border-flow 3s infinite;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.status-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 10px #4CAF50;
    animation: blink 2s infinite;
}

.socials {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: default;
    transition: all 0.3s ease;
    text-decoration: none;
    /* For link items */
}

/* Specific style for clickable links */
.social-item.link-item {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
}

.social-item:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
    border-color: var(--accent);
}

.social-item i {
    color: var(--accent);
}

.footer-note {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.6rem;
    color: #333;
    pointer-events: none;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes border-flow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Glitch Effect on Hover (Optional) */
h1:hover {
    animation: glitch-anim 0.3s infinite;
}

@keyframes glitch-anim {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .profile-card {
        width: 90%;
        padding: 2rem;
    }

    h1 {
        font-size: 2rem;
    }
}