@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    height: 100vh;
    overflow: hidden;
}

.main-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: filter 1.5s ease;
}

.main-wrapper.blur { filter: blur(20px); }

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.orb-1 { width: 400px; height: 400px; background: #4a00e0; top: -100px; left: -100px; }
.orb-2 { width: 300px; height: 300px; background: #8e2de2; bottom: -50px; right: -50px; animation-delay: -5s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 50px); }
}

.profile-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    width: 380px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.avatar-container { position: relative; width: 100px; height: 100px; margin: 0 auto 25px; }
.avatar { 
    width: 100%; height: 100%; border-radius: 50%; background: #111; 
    display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,0.1); 
}
.status-indicator { 
    position: absolute; bottom: 5px; right: 5px; width: 16px; height: 16px; 
    background: #10b981; border: 3px solid #1a1a1a; border-radius: 50%; box-shadow: 0 0 10px #10b981; 
}

h1 { font-size: 1.5rem; margin-bottom: 20px; height: 1.5em; text-shadow: 0 0 10px rgba(255,255,255,0.3); }
.bio-text { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; margin-bottom: 30px; }
.highlight { color: var(--text-primary); border-left: 2px solid var(--accent); padding-left: 10px; text-align: left; }

.link-btn {
    display: block; background: rgba(255,255,255,0.03); color: #fff; text-decoration: none;
    padding: 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); transition: 0.2s;
}
.link-btn:hover { background: rgba(255,255,255,0.1); transform: scale(1.02); }

.entry-mask {
    position: fixed; inset: 0; background: #050505; display: flex; 
    justify-content: center; align-items: center; z-index: 9999; cursor: pointer; transition: 1s;
}
.entry-mask.hidden { opacity: 0; visibility: hidden; }
.click-text { font-size: 1.2rem; letter-spacing: 5px; animation: pulse 2s infinite; }

@keyframes pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; transform: scale(1.05); } }

.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.7); 
    display: none; justify-content: center; align-items: center; z-index: 1000;
}
.modal-overlay.active { display: flex; backdrop-filter: blur(15px); }
.modal-content {
    background: rgba(20,20,20,0.9); border: 1px solid rgba(255,255,255,0.1);
    padding: 40px; border-radius: 24px; text-align: center; width: 350px; transition: 0.5s;
}
.modal-content.closing { transform: scale(0.7); opacity: 0; }

.copy-btn { background: #fff; color: #000; border: none; padding: 12px 25px; border-radius: 10px; font-weight: bold; cursor: pointer; margin-top: 20px; }

.nervous-shake { display: inline-block; animation: nervous 0.1s infinite; }
@keyframes nervous {
    0%, 100% { transform: translate(0,0); }
    25% { transform: translate(-2px, 2px); }
    75% { transform: translate(2px, -2px); }
}

#youtubePlayer { position: absolute; width: 0; height: 0; }