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

body {
    font-family: 'Roboto', sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
}

.container {
    max-width: 30rem;
    width: 100%;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
}

/* Header Banner */
.header-banner {
    position: relative;
    height: 12rem;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo {
    position: absolute;
    width: 4rem;
    bottom: -2rem;
    left: 2rem;
    display: flex;
    align-items: center;
}

.logo-image {
    width: 100%;
    object-fit: contain;
}



/* Profile Section */
.profile-section {
    padding: 3rem 1.875rem 1.25rem;
    margin-bottom: 1.25rem;
}

.profile-name {
    color: #333;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.profile-description {
    color: #666;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Links Section */
.links {
    padding: 0 1.875rem;
    margin-bottom: 2.5rem;
}

.orb-link.link {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1.125rem 1.5rem;
    background-color: #141e8c;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.orb-link.link:hover {
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
    background-color: hsl(235, 75%, 50%);
}

.orb-link.link:active {
    transform: translateY(0);
}

.link__content {
    display: block;
}

.link__content__title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.link__content__description {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Social Media Section */
.social-link-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 1.875rem 1.875rem;
}

.social-link-container .orb-link {
    width: 3rem;
    height: 3rem;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 0.0625rem solid #e0e0e0;
}

.social-link-container .orb-link:hover {
    background-color: #e8e8e8;
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

.social-link-container .orb-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.social-link-container .orb-link svg path,
.social-link-container .orb-link svg rect {
    fill: #666;
}

/* Responsive Design */
@media (max-width: 30rem) {
    
    .profile-name {
        font-size: 1.25rem;
    }
    
    .profile-description {
        font-size: 0.875rem;
    }
    
    .orb-link.link {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .social-link-container .orb-link {
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .social-link-container .orb-link svg {
        width: 1.125rem;
        height: 1.125rem;
    }
}

@media (max-width: 22.5rem) {
    .profile-image {
        width: 6.25rem;
        height: 6.25rem;
    }
    
    .social-link-container {
        gap: 0.75rem;
    }
    
    .social-link-container .orb-link {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .social-link-container .orb-link svg {
        width: 1rem;
        height: 1rem;
    }
}
