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

:root {
    --bg: #0a0a0f;
    --surface: rgba(255,255,255,0.04);
    --surface-hover: rgba(255,255,255,0.08);
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.18);
    --text-primary: #f0f0f5;
    --text-secondary: rgba(240,240,245,0.5);
    --accent: #7c6fff;
    --accent-2: #ff6b9d;
    --radius: 14px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* --- Ambient glows --- */
.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7c6fff55, transparent 70%);
    top: -150px;
    left: -100px;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b9d44, transparent 70%);
    bottom: 100px;
    right: -100px;
}

/* --- Layout --- */
.container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 48px 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* --- Header --- */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.profile-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
    margin-bottom: 4px;
}

.profile-pic {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-hover);
    display: block;
}

h1 {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #f0f0f5 30%, #7c6fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 4px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

/* --- Section label --- */
.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* --- Video --- */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}

/* --- Neon Dash featured card --- */
.neon-dash-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(124,111,255,0.15), rgba(255,107,157,0.1));
    border: 1px solid rgba(124,111,255,0.3);
    text-decoration: none;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.neon-dash-card:hover {
    transform: translateY(-2px);
    border-color: rgba(124,111,255,0.6);
    background: linear-gradient(135deg, rgba(124,111,255,0.22), rgba(255,107,157,0.15));
}

.nd-icon {
    font-size: 2rem;
    line-height: 1;
}

.nd-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nd-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.nd-sub {
    font-size: 0.82rem;
    color: rgba(124,111,255,0.9);
}

/* --- Links grid --- */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.links-grid--wide {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.link-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.link-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.link-card i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Platform accent colors on icons */
[data-platform="instagram"] i { color: #e1306c; }
[data-platform="tiktok"] i    { color: #f0f0f5; }
[data-platform="youtube"] i   { color: #ff0000; }
[data-platform="twitch"] i    { color: #9146ff; }
[data-platform="kick"] i      { color: #53fc18; }
[data-platform="discord"] i   { color: #5865f2; }
[data-platform="twitter"] i   { color: #f0f0f5; }
[data-platform="facebook"] i  { color: #1877f2; }
[data-platform="telegram"] i  { color: #26a5e4; }
[data-platform="spotify"] i   { color: #1db954; }
[data-platform="ytmusic"] i   { color: #ff0000; }
[data-platform="github"] i    { color: #f0f0f5; }
[data-platform="pizzaserver"] i { color: var(--accent); }
[data-platform="email"] i     { color: var(--text-secondary); }

/* --- Footer --- */
footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

/* --- Responsive --- */
@media (max-width: 420px) {
    .links-grid {
        grid-template-columns: 1fr 1fr;
    }
    h1 {
        font-size: 1.4rem;
    }
}
