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

body {
    font-family: monospace;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
}

.profile {
    text-align: center;
    margin-bottom: 50px;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 2px solid #444;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 8px;
    font-weight: normal;
}

.subtitle {
    color: #888;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.about {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.about h2 {
    font-size: 1.4em;
    margin-bottom: 12px;
    font-weight: normal;
}

.about p {
    color: #aaa;
    font-size: 1.05em;
}

.skills {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.skills h2 {
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: normal;
}

.skill-category {
    margin-bottom: 20px;
}

.skill-category:last-child {
    margin-bottom: 0;
}

.skill-category h3 {
    font-size: 0.9em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: normal;
}

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

.skill-tag {
    background: transparent;
    border: 1px solid #444;
    padding: 8px 16px;
    font-size: 0.95em;
    color: #aaa;
    transition: all 0.2s;
}

.skill-tag:hover {
    border-color: #666;
    color: #e0e0e0;
}

.links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.link-button {
    text-decoration: none;
    color: #e0e0e0;
    padding: 12px 30px;
    border: 1px solid #444;
    transition: all 0.2s;
    font-size: 1em;
}

.link-button:hover {
    border-color: #666;
    background: #222;
}
