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

body {
    background-color: #11111B;
    color: #FFFFFF;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

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

header {
    text-align: center;
    margin-bottom: 4rem;
}

.main-title {
    font-size: 2.5rem;
    color: #A6ADC8;
    font-weight: normal;
    margin-bottom: 1rem;
}

.subtitle {
    color: #FFFFFF;
    font-size: 1rem;
}

.section-title {
    color: #6C7086;
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
}

.projects-section,
.socials-section,
.about-section,
.interests-section,
.friends-section {
    margin-bottom: 3rem;
}

.items-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.item {
    background-color: #6C7086;
    padding: 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.item:hover {
    opacity: 0.8;
}

.item-title {
    color: #A6ADC8;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.item-description {
    color: #FFFFFF;
    font-size: 0.9rem;
}

.item-description a {
    color: #A6ADC8;
    text-decoration: none;
}

.item-description a:hover {
    opacity: 0.8;
}

/* About section */
.about-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-list p {
    color: #FFFFFF;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

/* Interests section */
.interests-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.interests-list p {
    color: #FFFFFF;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

/* Friends section */
.friends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.friend-card {
    background-color: #1E1E2E;
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
}

.friend-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
}

.friend-name {
    color: #A6ADC8;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.friend-desc {
    color: #FFFFFF;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.friend-socials {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.friend-link {
    background-color: #6C7086;
    color: #FFFFFF;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
}

.friend-link:hover {
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

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