body {
    background-color: #efefef;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.blob-orange-1 {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    max-width: 500px;
    max-height: 500px;
    background: #ff7e5f;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.6;
}

.blob-orange-2 {
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    max-width: 400px;
    max-height: 400px;
    background: #feb47b;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.6;
}

.profile-section {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.model-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(255, 126, 95, 0.2);
    margin-bottom: 15px;
}

.link-h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 5px;
}

.link-p {
    font-size: 1rem;
    color: #636e72;
    font-weight: 500;
}

.link-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 16px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: #2d3436;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.link-card:hover,
.link-card:focus {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 25px rgba(255, 126, 95, 0.15);
    color: #ff7e5f;
}

.img-card {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.card-title {
    flex-grow: 1;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.card-arrow {
    color: #ff7e5f;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.link-card:hover .card-arrow {
    transform: translateX(5px);
}
