:root {
    --accent-primary: #8b0000;
    /* Dark Red */
    --accent-secondary: #4a0000;
    /* Deep Crimson */
    --accent-light: #1a1a1a;
    /* Dark Gray */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    min-height: 100%;
    min-height: 100dvh;
    width: 100%;
}

/* Fondo ultra nítido y claro con la foto original de la modelo */
body {
    background-image:
        linear-gradient(160deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95)),
        url('imagen1.jpeg');
    background-size: 40%;
    background-position: center center;
    background-repeat: repeat-x;
    background-color: #050505;
    /* Fondo blanco-grisáceo claro */
    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(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)),
            url('imagen1.jpeg');
    }
}

/* Textura sutil y limpia */
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.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* Blobs de luz nítidos y elegantes (plateado, índigo y azul) */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 280px;
    height: 280px;
    background: #4a0000;
    /* Deep Red */
    top: -70px;
    left: -70px;
}

.blob-2 {
    width: 220px;
    height: 220px;
    background: #1a001a;
    /* Dark Purple */
    bottom: -50px;
    right: -50px;
    animation-delay: 3s;
}

.blob-3 {
    width: 160px;
    height: 160px;
    background: #2a2a2a;
    /* Dark Gray */
    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 transparente y súper limpia (exactamente como estaba antes) */
.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, #555 0%, #222 50%, #8b0000 100%);
    padding: 3px;
    box-shadow:
        0 0 0 5px rgba(0, 0, 0, 0.6),
        0 18px 48px rgba(139, 0, 0, 0.4);
    display: inline-block;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #222, #000);
    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(15, 23, 42, 0.35);
    /* Sombra suave para perfecta legibilidad */
    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.85);
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.5;
    animation: fadeUp 0.7s 0.3s both;
    padding: 0 8px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* 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 (Estilo cristal original oscuro y limpio) ──────────────────────── */
.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);
}

.btn-exclusive {
    border-color: rgba(139, 0, 0, 0.6);
    box-shadow:
        0 8px 32px rgba(139, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-exclusive::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 6s infinite;
}

@keyframes shimmer {
    0% {
        transform: translate(-30%, -30%) rotate(30deg);
    }

    100% {
        transform: translate(30%, 30%) rotate(30deg);
    }
}

/* 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;
}