.intro-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.intro-header {
    text-align: center;
    margin-bottom: 40px;
}

.avatar {
    font-size: 80px;
    margin-bottom: 20px;
}

.intro-header h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    color: #666;
}

.intro-section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.intro-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8em;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95em;
}

.interests {
    list-style: none;
    padding: 0;
}

.interests li {
    padding: 12px 0;
    font-size: 1.1em;
    border-bottom: 1px solid #eee;
}

.interests li:last-child {
    border-bottom: none;
}

.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
