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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
}

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

.profile-section {
    padding: 30px 20px 25px;
    text-align: center;
    margin-bottom: 40px;
    background-color: burlywood;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 4px;
    user-select: none;
}

.description {
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #444;
    font-size: 1.05em;
}

.contact-info {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 0.95em;
}

.contact-item a {
    color: #333;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

h1 {
    color: #333;
    font-size: 2.5em;
}

.tagline {
    color: #666;
    font-size: 1.2em;
    margin-top: 5px;
}

.section-label {
    padding: 0 20px;
    margin-bottom: 15px;
    font-size: 1.3em;
    color: #333;
    font-weight: 600;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.projects-featured {
    grid-template-columns: minmax(320px, 380px);
    justify-content: center;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.project-screenshot {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 25px;
    text-align: center;
}

.project-name {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.release-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.project-description {
    color: #555;
    font-size: 1em;
    margin-top: 15px;
    line-height: 1.6;
    text-align: left;
}

.game-link {
    display: inline-block;
    background: #333;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    user-select: none;
    margin-bottom: 10px;
    transition: background 0.2s ease;
}

.game-link:hover {
    background: #555;
}

.cv-section {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.cv-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}