:root {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --accent-color: #646cff;
    --border-color: #404040;
    --quote-color: #a8a8a8;
    --secondary-color: #242424;
    --hover-color: #535bf2;
}

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

body {
    font-family: 'Poppins', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    padding: 3px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    border-color: var(--border-color);
}

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

.quote {
    font-size: 1.4rem;
    color: var(--quote-color);
    font-weight: 300;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.quote-author {
    font-size: 1rem;
    color: var(--quote-color);
    opacity: 0.8;
    margin-top: 0.5rem;
}

.title {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    letter-spacing: 1px;
    font-weight: 300;
}

.section {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    transition: transform 0.3s ease;
}

.section:hover {
    transform: translateY(-5px);
}

.section h2 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.skill-tag {
    background-color: var(--bg-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 1.5rem;
    }
}
