    :root {
    --pink-hot: #ff2d78;
    --pink-mid: #ff6eb0;
    --pink-soft: #ffb3d1;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

    html, body {
    min-height: 100%;
    min-height: 100dvh;
    width: 100%;
    }

    /* Fondo con foto de modelo y degradado rosita */
    body {
    background-image: 
    linear-gradient(160deg, rgba(255,45,120,0.6), rgba(255,179,209,0.3)), 
    url('model_photo_background.jpeg');
    background-size: 40%; 
    background-position: center center; 
    background-repeat:repeat-x;
    background-color: #c2185b;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    padding: 24px 16px 40px;
    }

    @media (max-width: 767px) {
    body {
    background-size: cover;
    background-position: center center; 
    background-image: 
    linear-gradient(160deg, rgba(255,45,120,0.7), rgba(255,179,209,0.4)), 
    url('model_photo_background.jpeg');
    }
    }

    /* Noise texture */
    body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    }

    /* Blobs */
    .blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    }
    .blob-1 { width: 280px; height: 280px; background: #ff2d78; top: -70px; left: -70px; }
    .blob-2 { width: 220px; height: 220px; background: #ffb3d1; bottom: -50px; right: -50px; animation-delay: 3s; }
    .blob-3 { width: 160px; height: 160px; background: #ff6eb0; top: 45%; left: 55%; animation-delay: 1.5s; }

    @keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.04); }
    }

    /* Card */
    .card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    text-align: center;
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
    }

    /* ─── AVATAR ─────────────────────────────── */
    .avatar-wrap {
    display: inline-block;
    margin-bottom: 18px;
    animation: fadeUp 0.7s 0.1s both;
    }

    .avatar-ring {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, #ffb3d1 50%, #ff2d78 100%);
    padding: 3px;
    box-shadow:
    0 0 0 5px rgba(255,45,120,0.18),
    0 18px 48px rgba(255,45,120,0.45);
    display: inline-block;
    }

    .avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #ffb3d1, #ff6eb0);
    display: flex;
    align-items: center;
    justify-content: center;
    }

    /* ─── NAME & BIO ─────────────────────────── */
    .name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 8vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 24px rgba(194,24,91,0.5);
    letter-spacing: -0.5px;
    animation: fadeUp 0.7s 0.2s both;
    line-height: 1.1;
    }

    .badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    animation: fadeUp 0.7s 0.25s both;
    flex-wrap: wrap;
    }

    .badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.7rem;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    }

    .bio {
    margin-top: 10px;
    font-size: clamp(0.8rem, 3.5vw, 0.92rem);
    color: rgba(255,255,255,0.82);
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.5;
    animation: fadeUp 0.7s 0.3s both;
    padding: 0 8px;
    }

    /* Divider */
    .divider {
    margin: 20px auto;
    width: 36px;
    height: 2px;
    background: rgba(255,255,255,0.38);
    border-radius: 2px;
    animation: fadeUp 0.7s 0.35s both;
    }

    /* ─── BUTTONS ────────────────────────────── */
    .links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    }

    .btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    border-radius: 18px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
    0 8px 32px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition:
    transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.2s ease,
    border-color 0.2s,
    background 0.2s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    }

    .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.03) 100%);
    pointer-events: none;
    }

    @media (hover: hover) {
    .btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 14px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.18);
    }
    }

    .btn:active {
    transform: scale(0.96);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

    /* Icon container */
    .btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    }

    .btn-label { flex: 1; text-align: left; }

    .btn-label-main {
    display: block;
    font-weight: 500;
    font-size: clamp(0.88rem, 3.5vw, 0.95rem);
    }

    .btn-label-sub {
    display: block;
    font-size: 0.7rem;
    opacity: 0.6;
    font-weight: 300;
    margin-top: 2px;
    }

    .btn-arrow {
    font-size: 1rem;
    opacity: 0.45;
    transition: opacity 0.2s, transform 0.2s;
    }
    @media (hover: hover) {
    .btn:hover .btn-arrow { opacity: 1; transform: translateX(3px); }
    }

    /* Footer */
    .footer {
    margin-top: 28px;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    animation: fadeUp 0.7s 0.75s both;
    }