/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8c5a;
    --text-color: #1a1a1a;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-secondary: #fafafa;
    --border-color: #e0e0e0;
    --hover-color: #ff8c5a;
    --accent-bg: #fff5f2;
}

body {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Courier New', monospace, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 700px;
    width: 100%;
    background: var(--bg-color);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 107, 53, 0.1);
    padding: 60px 50px;
    text-align: center;
    animation: fadeIn 0.6s ease-in;
    position: relative;
    z-index: 1;
}

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

header {
    margin-bottom: 50px;
}

.name {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.intro {
    margin-bottom: 80px;
}

.quote {
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: -0.3px;
}

.description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 400;
}

.work-section {
    margin-top: 80px;
    margin-bottom: 40px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.work-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.work-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.3px;
    font-style: italic;
}

footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 40px 30px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.85rem;
    }
    
    .quote {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 0.8rem;
    }
    
    .work-section {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .work-title {
        font-size: 2.5rem;
    }
    
    .work-subtitle {
        font-size: 1rem;
    }
}

