:root {
    --bg: #050505;
    --card-bg: #111111;
    --text: #e0e0e0;
    --text-dim: #888888;
    --accent-primary: #39ff14; /* Neon Green */
    --accent-secondary: #00d4ff; /* Cyan */
    --accent-tertiary: #ff00ff; /* Magenta */
    --border: #333;
    --font-main: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

.container {
    max-width: 680px;
    width: 100%;
}

a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-secondary);
    transition: all 0.2s;
}

a:hover {
    color: var(--accent-secondary);
    box-shadow: 0 2px 0 var(--accent-secondary);
}

/* Header */
header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out;
}

.avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    filter: grayscale(20%) contrast(110%);
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    border: 3px solid var(--bg);
    box-shadow: 0 0 10px var(--accent-primary);
}

h1 {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.accent {
    color: var(--accent-secondary);
}

.subtitle {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    color: var(--accent-secondary);
}

.tag-new {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Main Content */
.intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.quote {
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    color: var(--accent-primary);
    font-size: 0.9rem;
    border-left: 2px solid var(--accent-primary);
    display: inline-block;
    padding-left: 1rem;
}

.update-note {
    margin-top: 1.5rem;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid var(--accent-primary);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.update-note strong {
    color: var(--accent-primary);
    display: block;
    margin-bottom: 0.3rem;
}

/* Stats Grid */
.grid-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
}

.stat-card .number {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.stat-card .label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.grid-sections {
    display: grid;
    gap: 1.5rem;
}

.card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon {
    font-size: 1.4rem;
}

ul {
    list-style: none;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-dim);
}

li::before {
    content: ">";
    color: var(--accent-primary);
    font-family: var(--font-mono);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Stack List */
.stack-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stack-item strong {
    display: block;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.stack-item span {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.links-list li a {
    border: none;
    color: var(--text-dim);
}

.links-list li a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

/* Footer */
footer {
    margin-top: 4rem;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
    font-family: var(--font-mono);
}

.faint {
    opacity: 0.5;
    margin-top: 0.5rem;
}

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

@media (max-width: 600px) {
    .grid-stats {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2rem;
    }
    .tags {
        font-size: 0.7rem;
    }
}
