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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e4e4e4;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 8rem;
    padding: 4rem 0;
    min-height: 60vh;
}

.bio {
}

.bio h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #00d9ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.25rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid #444;
    border-radius: 8px;
    text-decoration: none;
    color: #e4e4e4;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn:hover {
    border-color: #00d9ff;
    color: #00d9ff;
}

.btn-primary {
    background: linear-gradient(90deg, #00d9ff, #00ff88);
    border: none;
    color: #1a1a2e;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    color: #1a1a2e;
}

.profile-image {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chat-button-container {
    margin-top: 1rem;
}

.chat-btn {
    font-size: 1rem;
    padding: 0.75rem 2rem;
}

.profile-img {
    width: 320px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid #333;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2a2a4a 0%, #1a1a3e 100%);
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

/* Portfolio Section */
.portfolio {
    padding: 4rem 0;
}

.portfolio h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #fff;
    text-align: center;
}

/* New Project Row Layout */
.project-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.project-row:hover {
    border-color: #00d9ff;
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.1);
}

.project-mockup {
    flex-shrink: 0;
    width: 180px;
}

.project-mockup img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.project-info {
    flex: 1;
}

.project-info h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.live { background: #00ff88; color: #000; }
.status-badge.dev { background: #ffaa00; color: #000; }

.project-lead {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tech-bullets {
    list-style: none;
    margin-bottom: 1rem;
}

.tech-bullets li {
    color: #999;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tech-bullets li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #00d9ff;
}

.tech-bullets li strong {
    color: #00d9ff;
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .project-row {
        flex-direction: column;
        text-align: center;
    }
    
    .project-mockup {
        width: 140px;
    }
    
    .project-info h3 {
        justify-content: center;
    }
    
    .tech-bullets li {
        padding-left: 0;
    }
    
    .tech-bullets li::before {
        display: none;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    color: #666;
    border-top: 1px solid #333;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }
    
    .bio h1 {
        font-size: 2rem;
    }
    
    .description {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
}
