:root {
    --bg: #0a0a0a;
    --text: #ffffff;
    --text-muted: #666666;
    --accent: #00ff88;
    --border: #1a1a1a;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    font-size: 16px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.hero {
    margin-bottom: 3rem;
}

.greeting {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    display: block;
    margin-bottom: 0.5rem;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    color: var(--text);
    transition: color 0.3s ease;
}

.name:hover {
    color: var(--accent);
}

.cursor {
    color: var(--accent);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.role {
    margin-top: 2rem;
}

.title {
    font-size: 1.125rem;
    color: var(--text);
    font-weight: 400;
}

/* Main */
main {
    flex: 1;
}

.experience {
    margin-bottom: 3rem;
}

.current, .previous {
    margin-bottom: 2rem;
}

.label {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.work {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.work-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.freelance-icon, .experience-icon {
    font-size: 20px;
    line-height: 1;
}

.company {
    font-size: 1rem;
    color: var(--text);
    font-weight: 400;
}

.at {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.secondary-tools {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.work.secondary {
    margin-bottom: 0.5rem;
}

.work.secondary .company {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Skills */
.skills {
    margin-bottom: 3rem;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skill-name {
    min-width: 120px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.skill-bar {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.skill-fill.expert {
    width: 95%;
}

.skill-fill.advanced {
    width: 85%;
}

.skill-fill.proficient {
    width: 75%;
}

/* Contact */
.contact {
    margin-bottom: 3rem;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.link:hover {
    color: var(--text);
}

/* Footer */
footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.stat-value {
    color: var(--text);
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.stat-unit {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.credit {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.cursor-text {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 1.75rem;
    }
    
    .work {
        margin-right: 0.5rem;
    }
} 