body {
    background: #11181c;
    color: #fff;
    min-height: 100vh;
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card {
    background: #181f23;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.profile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: 100%;
    justify-content: flex-start;
}

.profile-img-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #222b31;
    background: #181f23;
    flex-shrink: 0;
}

.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    min-width: 100px;
    min-height: 100px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.profile-username {
    color: #b0b8be;
    font-size: 0.95em;
    font-weight: 400;
}

.profile-location {
    color: #b0b8be;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    width: 100%;
    justify-content: flex-start;
}

.profile-tags span {
    background: #222b31;
    color: #e0e6eb;
    border-radius: 16px;
    padding: 4px 14px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #232b31;
    transition: background 0.2s;
}

.profile-tags span:hover {
    background: #2a3238;
}

.tag {
    background: #222b31;
    color: #e0e6eb;
    border-radius: 16px;
    padding: 4px 14px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #232b31;
    transition: background 0.2s;
    text-decoration: none;
    margin-right: 8px;
    margin-bottom: 8px;
}

.tag:hover {
    background: #2a3238;
    color: #fff;
}

.tag-icon {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
}

.credit {
    position: fixed;
    bottom: 16px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #b0b8be;
    opacity: 0.7;
    letter-spacing: 0.01em;
}

.credit a {
    color: #b0b8be;
    text-decoration: underline;
}

@media (max-width: 500px) {
    .profile-img-container {
        width: 80px;
        height: 80px;
    }

    .profile-img {
        width: 110px;
        height: 110px;
    }
}

.flex-break {
    flex-basis: 100%;
    height: 0;
    width: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    display: block;
    content: "";
    visibility: hidden;
}