:root {
    --primary: #007cf0;
    --secondary: #00dfd8;
    --bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text: #ffffff;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-glow {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #101525 0%, #050505 100%);
    z-index: -1;
}

.container {
    max-width: 500px;
    width: 90%;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-family: 'Fira Code', monospace;
    color: #555;
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
    color: #888;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.tab.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--secondary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.bio-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.bio-box p { margin: 0; font-size: 0.95rem; font-weight: 600; }
.bio-box span { font-size: 0.8rem; color: #555; }

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.link-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.link-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.full-width { grid-column: span 2; }

.status-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-item {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    color: #444;
    font-family: 'Fira Code', monospace;
}

.dot {
    width: 6px;
    height: 6px;
    background: #00ff41;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px #00ff41;
}

@media (max-width: 450px) {
    .grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
}