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

:root {
    --bg-color: #0d1117;
    --text-primary: #ffffff;
    --text-secondary: #8b949e;
    --accent-color: #58a6ff;
    --hover-color: #1f6feb;
    --card-bg: #161b22;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.content {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(120deg, #58a6ff, #a371f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    background-color: var(--bg-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 1.25rem;
}

.social-link:hover {
    transform: translateY(-2px);
    background-color: var(--hover-color);
}

.github:hover {
    background-color: #2ea043;
}

.linkedin:hover {
    background-color: #0a66c2;
}

.cv:hover {
    background-color: #dc3545;
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 1rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}

:root {
    --bg-primary: #1a1b1e;
    --bg-secondary: #2c2e33;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 8px;
    position: relative;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.connect {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.connect .links-container {
    gap: 0.5rem;
}

section {
    margin-bottom: 2rem;
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.experience {
    display: flex;
    gap: 2rem;
}

.jobs-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skills-cards {
    width: 300px;
    margin-top: 2rem;
}

.skill-card {
    background-color: var(--bg-primary);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-color);
}

.skill-card h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-card p {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.job {
    background-color: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
}

.job-header {
    margin-bottom: 1rem;
}

.job-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.job ul {
    list-style-position: outside;
    margin-left: 1.2rem;
    color: var(--text-secondary);
}

.job li {
    margin-bottom: 0.5rem;
    text-align: left;
}

.education {
    max-width: 800px;
    margin: 0 auto;
}

.degree {
    margin-bottom: 1.5rem;
    background-color: var(--bg-primary);
    padding: 1rem;
    border-radius: 8px;
}

.degree h3 {
    margin-bottom: 0.3rem;
}

.degree p {
    color: var(--text-secondary);
}

.degree a, .job-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s;
}

.degree a:hover, .job-info a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.skill-category {
    background-color: var(--bg-primary);
    padding: 1rem;
    border-radius: 8px;
    height: 100%;
}

.skill-category h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.skill-category p {
    color: var(--text-secondary);
}

.links-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-button, .download-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
    font-size: 0.9rem;
}

.social-button:hover, .download-button:hover {
    transform: translateY(-2px);
}

.linkedin {
    background-color: #0077b5;
    color: white;
}

.linkedin:hover {
    background-color: #005f8e;
}

.github {
    background-color: #24292e;
    color: white;
}

.github:hover {
    background-color: #1a1f23;
}

.download-button {
    background-color: var(--success-color);
    color: white;
}

.download-button:hover {
    background-color: #219a52;
}