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

body {
    background-color: #000000;
    color: #E7E9EA;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333639;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    color: #E7E9EA;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-icon:hover {
    color: #1D9BF0;
}

/* Ensure no scrolling on any device */
@media screen and (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .profile-photo {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .profile-photo {
        width: 180px;
        height: 180px;
    }
}