* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #0b0b0e;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 60px 0;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #0b0b0e 100%);
    z-index: -1;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 450px;
}

.logo {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo span {
    color: #00d2ff;
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
}

.tagline {
    color: #888;
    font-size: 0.85rem;
    margin-top: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bio {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 16px;
    margin: 25px 0;
    text-align: left;
    backdrop-filter: blur(10px);
}

.bio h3 {
    color: #00d2ff;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bio p { 
    color: #bbb; 
    line-height: 1.6; 
    font-size: 0.95rem; 
}

.links-container { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}

.card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.card i { 
    margin-right: 15px; 
    font-size: 1.2rem; 
    width: 25px; 
}

.card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.youtube:hover { border-color: #ff0000; box-shadow: 0 0 15px rgba(255, 0, 0, 0.2); }
.twitch:hover { border-color: #9146ff; box-shadow: 0 0 15px rgba(145, 70, 255, 0.2); }
.discord:hover { border-color: #5865f2; box-shadow: 0 0 15px rgba(88, 101, 242, 0.2); }

footer { 
    margin-top: 40px; 
    font-size: 0.7rem; 
    color: #444; 
}