/* Extracted from index.html */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1d1d1d;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.frame {
    padding: 3.5rem 2rem 2rem;
    border: 2px solid #333;
    border-radius: 10px;
    background-color: #252525;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.status-bar {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time {
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
}

.status-bar img {
    width: 0.9rem;
    height: 0.9rem;
    filter: invert(100%);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.name-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.name {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
}

.verified-badge {
    width: 1.2rem;
    height: 1.2rem;
    filter: invert(56%) sepia(75%) saturate(458%) hue-rotate(101deg) brightness(95%) contrast(87%);
}

.description {
    color: #a0a0a0;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    max-width: 250px;
}

.social-icons {
    display: flex;
    gap: 1.2em;
}

.social-icons img {
    width: 1.5em;
    height: 1.5em;
    filter: invert(50%);
    transition: all 0.3s ease;
}

.footer {
    position: fixed;
    bottom: 1rem;
    display: flex;
    gap: 1rem;
    font-size: 0.7rem;
    color: #444;
    font-family: 'Work Sans', sans-serif;
}

.footer a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #666;
}

.social-icons a:hover img {
    filter: invert(100%);
    transform: scale(1.2);
}
