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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 900px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(66, 135, 245, 0.08);
    overflow: hidden;
    border: 1px solid rgba(66, 135, 245, 0.1);
    padding-left: 40px;
    padding-right: 40px;
}

.header {
    background: linear-gradient(135deg, #4287f5 0%, #3a75d9 100%);
    color: #ffffff;
    padding: 80px 60px;
    text-align: center;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.95;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.content {
    padding: 60px;
}

.section {
    margin-bottom: 50px;
}

.section:last-child {
    margin-bottom: 0;
}

h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #4287f5;
    margin-bottom: 20px;
    font-weight: 400;
    border-bottom: 1px solid rgba(66, 135, 245, 0.2);
    padding-bottom: 10px;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.hobby-item {
    padding: 25px;
    background: #fafbfc;
    border: 1px solid rgba(66, 135, 245, 0.15);
    border-radius: 2px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hobby-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(66, 135, 245, 0.15);
    border-color: #4287f5;
}

.hobby-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.hobby-name {
    font-size: 1rem;
    color: #2c3e50;
    letter-spacing: 0.5px;
}



@media (max-width: 768px) {
    .header {
        padding: 60px 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .content {
        padding: 40px 30px;
    }

    .hobbies-grid {
        grid-template-columns: 1fr;
    }
}

/* Projects Section ----------------------------------------------------- */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.project-item {
    background: #fafbfc;
    padding: 25px;
    border: 1px solid rgba(66, 135, 245, 0.15);
    border-radius: 2px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.project-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(66, 135, 245, 0.15);
    border-color: #4287f5;
}

.project-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.project-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #555;
}

.project-link {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 14px;
    color: white;
    background: #4287f5;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.project-link:hover {
    background: #326cd6;
}

/* About Me Section ----------------------------------------------------- */

.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.about-intro {
    font-size: 1.05rem;
    font-weight: 500;
}

.about-outro {
    font-size: 0.95rem;
    color: #6b7280;
}

.highlight {
    color: #4287f5;
    font-weight: 600;
}

.about-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.about-pill {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(66, 135, 245, 0.3);
    font-size: 0.85rem;
    background: #f5f7ff;
    color: #1f2933;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 135, 245, 0.2);
    border-color: #4287f5;
}

/* Social Links Section ----------------------------------------------- */
/* 
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #4a5568;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.social-icon:hover {
    background: #4287f5;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(66, 135, 245, 0.3);
    border-color: #4287f5;
} */