* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: crosshair;
}

body {
    background-color: #050505;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#enter-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#enter-screen p {
    font-size: 2.5rem;
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    animation: pulse 2s infinite;
    user-select: none;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; text-shadow: 0 0 20px #ff0055, 0 0 30px #ff0055; color: #ff0055;}
    100% { transform: scale(1); opacity: 0.8; }
}

#main-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

#main-content.visible {
    opacity: 1;
}

.bg-image {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('https://media.tenor.com/2s_1jCgUqW0AAAAC/bleach-anime.gif');
    background-size: cover;
    background-position: center;
    filter: brightness(0.5) saturate(1.2);
    z-index: -1;
    animation: panBg 30s infinite alternate linear;
}

@keyframes panBg {
    from { transform: translate(0, 0); }
    to { transform: translate(-2%, -2%); }
}

/* Glassmorphism card */
.glass-container {
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.05);
    padding: 3rem 4rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease 0.5s;
    z-index: 10;
}

#main-content.visible .glass-container {
    transform: translateY(0);
    opacity: 1;
}

.profile-pic {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 1.5rem;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 3px solid rgba(0, 255, 255, 0.4);
    transition: transform 0.3s ease;
}

.profile-pic:hover img {
    transform: scale(1.05);
}

.glow-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff0055, #00ffff, #ff0055, #00ffff);
    z-index: 1;
    filter: blur(15px);
    animation: spin 3s linear infinite;
    opacity: 0.8;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.username {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    transition: text-shadow 0.3s ease;
}

.username:hover {
    text-shadow: 0 0 10px #ff0055, 0 0 20px #ff0055;
}

.bio-text {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 2rem;
    min-height: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #00ffff;
    transform: translateY(-5px);
    text-shadow: 0 0 15px #00ffff;
}

.social-icon:nth-child(even):hover {
    color: #ff0055;
    text-shadow: 0 0 15px #ff0055;
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff;
    top: -10px;
    animation: fall linear infinite;
}

.particle:nth-child(even) {
    background: #ff0055;
    box-shadow: 0 0 10px #ff0055;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Glitch text */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #ff0055;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(13px, 9999px, 52px, 0); }
    20% { clip: rect(79px, 9999px, 86px, 0); }
    40% { clip: rect(29px, 9999px, 14px, 0); }
    60% { clip: rect(98px, 9999px, 75px, 0); }
    80% { clip: rect(23px, 9999px, 30px, 0); }
    100% { clip: rect(65px, 9999px, 49px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(96px, 9999px, 8px, 0); }
    20% { clip: rect(27px, 9999px, 18px, 0); }
    40% { clip: rect(44px, 9999px, 95px, 0); }
    60% { clip: rect(72px, 9999px, 66px, 0); }
    80% { clip: rect(12px, 9999px, 32px, 0); }
    100% { clip: rect(51px, 9999px, 83px, 0); }
}
 
.gamble-btn { margin-top: 2rem; display: inline-block; padding: 10px 20px; border: 2px solid #ff0055; color: #ff0055; text-decoration: none; font-family: 'Orbitron', sans-serif; font-size: 1.2rem; transition: 0.3s; border-radius: 5px; } .gamble-btn:hover { background: #ff0055; color: #fff !important; box-shadow: 0 0 15px #ff0055; transform: scale(1.05); }
