:root {
    --primary-color: #0070f3;
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --secondary-text: #888888;
    --card-bg: #1a1a1a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

header {
    margin-bottom: 40px;
}

.profile-pic {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.1rem;
    color: var(--secondary-text);
    font-weight: 400;
}

section {
    margin-bottom: 30px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #333;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: transparent;
    border: none;
    padding: 0;
}

.stat-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #333;
}

.stat-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: transparent;
    border: none;
    padding: 0;
}

.button {
    display: block;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.youtube { background-color: #ff0000; color: white; }
.website { background-color: #ffffff; color: black; }
.email { background-color: #333; color: white; }

.button:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--secondary-text);
}
