/* ===== VARIABLES ===== */
:root {
    --main-bg: url("img/portal-bg.png");
    --text: #f4f4f4;
    --muted: rgba(244, 244, 244, 0.72);
    --paper: rgba(232, 232, 232, 0.90);
    --ink: #1b1012;
    --wine: #8f1022;
    --wine-dark: #12090b;
    --neon: #ff2d55;
    --neon-soft: rgba(255, 45, 85, 0.42);
    --line: rgba(255, 255, 255, 0.16);
    --glass: rgba(0, 0, 0, 0.58);
    --font-main: 'Poppins', sans-serif;
}

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

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #1f1f1f;
    background-image:
        linear-gradient(180deg, rgba(26, 26, 26, 0.16), rgba(10, 10, 10, 0.50)),
        var(--main-bg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text);
    font-family: var(--font-main);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.10), transparent 22%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.42) 100%);
    pointer-events: none;
}

a {
    color: inherit;
}

/* ===== GARRAS REALES ===== */
.claw-layer {
    position: fixed;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.claw-image {
    position: absolute;
    display: block;
    width: 520px;
    height: auto;
    opacity: 0.46;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.7));
    user-select: none;
}

.claw-top {
    top: -220px;
    right: 16%;
    width: 560px;
    transform: rotate(-8deg);
}

.claw-middle {
    top: 360px;
    left: 38%;
    width: 520px;
    transform: translateX(-8%) rotate(6deg);
}

.claw-bottom {
    bottom: -310px;
    left: 12%;
    width: 610px;
    transform: rotate(-8deg);
}

/* ===== HOME PERFIL ===== */
.profile-shell {
    position: relative;
    z-index: 3;
    width: min(100%, 1040px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 22px 96px;
}

.profile-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border: 0;
    border-radius: 0 0 42px 42px;
    background: rgba(0, 0, 0, 0.18);
    box-shadow: none;
}

.profile-cover {
    position: absolute;
    inset: -4%;
    width: 108%;
    height: 108%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: saturate(1.02) contrast(1.02);
}

.profile-hero::before {
    content: "";
    position: absolute;
    top: -8px;
    left: clamp(-82px, -6vw, -42px);
    z-index: 1;
    width: clamp(210px, 31vw, 390px);
    aspect-ratio: 3 / 2;
    background: url("img/hero-fill-art.png") center / contain no-repeat;
    opacity: 0.90;
    filter: saturate(1.04) contrast(1.04) drop-shadow(0 18px 42px rgba(0, 0, 0, 0.36));
    pointer-events: none;
    transform: rotate(7deg);
    transform-origin: 35% 15%;
    mask-image: linear-gradient(90deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.58) 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.58) 82%, transparent 100%);
}

.profile-hero::after {
    content: "";
    position: absolute;
    inset: 72% 0 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(18, 18, 18, 0.32));
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    mask-image: linear-gradient(180deg, transparent, #000 38%);
}

.hero-actions {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 45, 85, 0.42);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.76);
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 14px rgba(143, 16, 34, 0.38), 0 12px 32px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-action:hover,
.hero-action:focus-visible {
    background: #050506;
    box-shadow: 0 0 14px rgba(255, 45, 85, 0.52), 0 12px 32px rgba(0, 0, 0, 0.24);
    outline: none;
    transform: translateY(-1px);
}

.copy-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: min(calc(100% - 32px), 360px);
    padding: 10px 18px;
    border: 1px solid rgba(255, 45, 85, 0.52);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.82);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 0 18px rgba(255, 45, 85, 0.42), 0 18px 44px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 16px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.copy-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.profile-info {
    position: absolute;
    left: 50%;
    bottom: 38px;
    z-index: 2;
    width: min(100% - 44px, 820px);
    color: var(--text);
    text-align: center;
    transform: translateX(-50%);
}

.status-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.status-row span,
.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(255, 45, 85, 0.34);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.38);
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-info h1 {
    font-size: clamp(36px, 6vw, 66px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.95;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.72), 0 0 22px rgba(255, 45, 85, 0.28);
    overflow-wrap: anywhere;
}

.profile-info p {
    width: min(100%, 520px);
    margin: 12px auto 0;
    color: rgba(244, 244, 244, 0.78);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.55;
}

.portal-panel {
    position: relative;
    z-index: 4;
    display: grid;
    gap: 18px;
    margin-top: -8px;
    width: min(100%, 920px);
    margin-left: auto;
    margin-right: auto;
    padding: 28px 10px 0;
}

.portal-button,
.test-card {
    position: relative;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 112px;
    align-items: center;
    min-height: 102px;
    padding: 8px 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.portal-button::after,
.test-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    z-index: 2;
    width: 118px;
    height: 118px;
    background: url("img/dragon-daemon-1.png") center / contain no-repeat;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.92)) drop-shadow(0 0 14px var(--neon-soft));
    transform: translateY(-50%);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.portal-button:nth-child(1)::after,
.test-card:nth-child(1)::after {
    background-image: url("img/dragon-daemon-1.png");
}

.portal-button:nth-child(2)::after,
.test-card:nth-child(2)::after {
    background-image: url("img/dragon-daemon-3.png");
}

.portal-button:nth-child(3)::after,
.test-card:nth-child(3)::after {
    background-image: url("img/dragon-daemon-4.png");
}

.portal-button:nth-child(4)::after,
.test-card:nth-child(4)::after {
    background-image: url("img/dragon-daemon-5.png");
}

.portal-button:nth-child(5)::after,
.test-card:nth-child(5)::after {
    background-image: url("img/dragon-daemon-6.png");
}

.portal-button:nth-child(6)::after,
.test-card:nth-child(6)::after {
    background-image: url("img/dragon-daemon-7.png");
}

.portal-button:nth-child(7)::after,
.test-card:nth-child(7)::after {
    background-image: url("img/dragon-daemon-8.png");
}

.portal-button:nth-child(8)::after,
.test-card:nth-child(8)::after {
    background-image: url("img/dragon-daemon-1.png");
}

.portal-button:hover,
.portal-button:focus-visible,
.test-card:hover,
.test-card:focus-visible {
    outline: none;
    transform: translateY(-3px);
}

.portal-button:hover::after,
.portal-button:focus-visible::after,
.test-card:hover::after,
.test-card:focus-visible::after {
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 1)) drop-shadow(0 0 18px var(--neon));
    transform: translateY(-50%) scale(1.08) rotate(-3deg);
}

.portal-icon {
    position: relative;
    z-index: 4;
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: #0a0a0c;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.56), 0 0 18px rgba(255, 255, 255, 0.22), 0 18px 34px rgba(0, 0, 0, 0.34);
}

.portal-icon.image-icon {
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.portal-icon.image-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portal-button strong,
.test-card strong {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 100%;
    min-height: 54px;
    padding: 10px 34px;
    border: 2px solid var(--wine);
    border-radius: 999px;
    background: #050506;
    box-shadow: 0 0 10px rgba(143, 16, 34, 0.82), 0 0 24px rgba(143, 16, 34, 0.42), inset 0 0 18px rgba(255, 45, 85, 0.08);
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-align: center;
    text-transform: uppercase;
}

.portal-button strong small,
.test-card strong small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    padding: 2px 8px;
    border: 1px solid rgba(255, 45, 85, 0.55);
    border-radius: 999px;
    color: var(--neon);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-shadow: 0 0 8px rgba(255, 45, 85, 0.72);
}

.mobile-bottom-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 14px;
    border: 2px solid var(--wine);
    border-radius: 999px;
    background: #050506;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(143, 16, 34, 0.82), 0 0 24px rgba(143, 16, 34, 0.42), inset 0 0 18px rgba(255, 45, 85, 0.08);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav a:focus-visible,
.mobile-bottom-nav a.active {
    background: #000000;
    box-shadow: 0 0 14px rgba(255, 45, 85, 0.88), 0 0 32px rgba(255, 45, 85, 0.48);
    outline: none;
    transform: translateY(-2px);
}

.mobile-bottom-nav {
    display: none;
}

.video-link {
    position: relative;
    z-index: 4;
    display: block;
    width: min(100%, 760px);
    margin: 42px auto 0;
    overflow: visible;
    border: 2px solid var(--wine);
    border-radius: 28px;
    background: #050506;
    box-shadow: 0 0 10px rgba(143, 16, 34, 0.82), 0 0 24px rgba(143, 16, 34, 0.42), 0 18px 42px rgba(0, 0, 0, 0.34);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-link:hover,
.video-link:focus-visible {
    box-shadow: 0 0 14px rgba(255, 45, 85, 0.88), 0 0 32px rgba(255, 45, 85, 0.48), 0 18px 42px rgba(0, 0, 0, 0.38);
    outline: none;
    transform: translateY(-3px);
}

.video-link::after {
    content: "";
    position: absolute;
    right: clamp(-86px, -7vw, -42px);
    bottom: clamp(-42px, -4vw, -22px);
    z-index: 3;
    width: clamp(150px, 20vw, 250px);
    aspect-ratio: 1 / 1.35;
    background: url("img/personaje.png") right bottom / contain no-repeat;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.78)) drop-shadow(0 0 12px rgba(255, 45, 85, 0.24));
    pointer-events: none;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.video-link:hover::after,
.video-link:focus-visible::after {
    filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.82)) drop-shadow(0 0 16px rgba(255, 45, 85, 0.34));
    transform: translateY(-3px);
}

.promo-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    overflow: hidden;
    border-radius: 26px;
}

/* ===== NAVEGACION INTERNA ===== */
.site-nav {
    position: fixed;
    top: 14px;
    left: 50%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: min(calc(100% - 28px), 960px);
    min-height: 62px;
    padding: 10px 12px 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.52);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(-50%);
}

.brand-link {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-shadow: 0 0 14px var(--neon-soft);
}

.brand-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(143, 16, 34, 0.36);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(143, 16, 34, 0.28);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.home-link:hover,
.home-link:focus-visible {
    background: #050506;
    box-shadow: 0 0 14px rgba(255, 45, 85, 0.42);
    outline: none;
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(143, 16, 34, 0.28);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
    border-color: rgba(255, 45, 85, 0.52);
    background: #050506;
    box-shadow: 0 0 14px rgba(143, 16, 34, 0.42);
    color: #ffffff;
    outline: none;
    transform: translateY(-1px);
}

/* ===== PAGINAS INTERNAS ===== */
.page {
    position: relative;
    z-index: 3;
    width: min(100% - 32px, 920px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 112px 0 100px;
}

.page-inner {
    width: min(100% - 32px, 920px);
    padding-top: 112px;
}

.inner-header {
    margin-bottom: 30px;
    padding: 8px 4px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.inner-header h1 {
    margin-top: 14px;
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    line-height: 0.98;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.72), 0 0 20px rgba(255, 45, 85, 0.22);
}

.inner-header p {
    margin-top: 14px;
    color: rgba(244, 244, 244, 0.74);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
}

.test-buttons {
    display: grid;
    gap: 18px;
}

.live-buttons {
    gap: 24px;
}

.test-card {
    min-height: 88px;
    color: #ffffff;
}

.live-buttons .test-card {
    grid-template-columns: 128px minmax(0, 1fr) 136px;
    column-gap: 16px;
    min-height: 112px;
}

.live-buttons .test-card::after {
    right: -4px;
    width: 118px;
    height: 118px;
}

.live-buttons .portal-icon.image-icon {
    width: 112px;
    height: 70px;
    align-self: center;
    justify-self: center;
}

.live-buttons .portal-icon.image-icon img {
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.30)) drop-shadow(0 12px 20px rgba(0, 0, 0, 0.34));
}

.live-buttons .portal-icon.image-icon.stripchat-icon,
.live-buttons .portal-icon.image-icon.livejasmin-icon,
.live-buttons .portal-icon.image-icon.streamate-icon,
.live-buttons .portal-icon.image-icon.flirt4free-icon {
    width: 72px;
    height: 72px;
}

.live-buttons .portal-icon.image-icon.camsoda-icon {
    width: 124px;
    height: 54px;
}

.live-buttons .stripchat-icon img,
.live-buttons .livejasmin-icon img,
.live-buttons .streamate-icon img {
    border-radius: 14px;
    transform: scale(0.90);
}

.live-buttons .flirt4free-icon img {
    transform: scale(0.98);
}

.live-buttons .camsoda-icon img {
    transform: scale(0.94);
}

.social-buttons .test-card {
    grid-template-columns: 112px minmax(0, 1fr) 112px;
}

.social-buttons .portal-icon.image-icon {
    width: 92px;
    height: 92px;
    justify-self: center;
    overflow: visible;
}

.social-buttons .portal-icon.image-icon img {
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.30)) drop-shadow(0 12px 20px rgba(0, 0, 0, 0.34));
}

.social-buttons .instagram-icon {
    width: 86px;
    height: 86px;
}

.social-buttons .x-icon {
    width: 84px;
    height: 84px;
}

.social-buttons .reddit-icon {
    width: 82px;
    height: 82px;
}

.social-buttons .tiktok-icon {
    width: 74px;
    height: 88px;
}

.social-buttons .instagram-icon img {
    transform: scale(1.02);
}

.social-buttons .x-icon img {
    border-radius: 50%;
    transform: scale(0.95);
}

.social-buttons .reddit-icon img {
    transform: scale(0.98);
}

.social-buttons .tiktok-icon img {
    transform: scale(0.88);
}

.purchase-buttons .test-card {
    grid-template-columns: 112px minmax(0, 1fr) 112px;
}

.purchase-buttons .portal-icon.image-icon {
    justify-self: center;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.30)) drop-shadow(0 12px 20px rgba(0, 0, 0, 0.34));
}

.purchase-buttons .onlyfans-icon {
    width: 84px;
    height: 84px;
}

.purchase-buttons .fansly-icon {
    width: 104px;
    height: 86px;
}

.purchase-buttons .onlyfans-icon img {
    transform: scale(0.98);
}

.purchase-buttons .fansly-icon img {
    transform: scale(0.86);
}

/* ===== BOTONES SOCIALES EXISTENTES ===== */
.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 18px;
}

.link {
    position: relative;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 112px;
    align-items: center;
    width: 100%;
    max-width: 520px;
    min-height: 102px;
    color: white;
    text-decoration: none;
}

.icon {
    justify-self: start;
    width: 78px;
    height: 78px;
    object-fit: contain;
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.62)) drop-shadow(0 0 18px rgba(255, 255, 255, 0.24)) drop-shadow(0 16px 28px rgba(0, 0, 0, 0.42));
}

.pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 54px;
    padding: 10px 34px;
    border: 2px solid var(--wine);
    border-radius: 999px;
    background: #050506;
    color: white;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    overflow-wrap: anywhere;
    box-shadow: 0 0 10px rgba(143, 16, 34, 0.82), 0 0 24px rgba(143, 16, 34, 0.42), inset 0 0 18px rgba(255, 45, 85, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.link:hover .pill,
.link:focus-visible .pill {
    background: #000000;
    box-shadow: 0 0 14px rgba(255, 45, 85, 0.88), 0 0 32px rgba(255, 45, 85, 0.48);
    transform: scale(1.035);
}

.link:focus-visible {
    outline: none;
}

.link:focus-visible .pill {
    outline: 2px solid rgba(255, 255, 255, 0.82);
    outline-offset: 4px;
}

.dragon {
    position: absolute;
    top: 50%;
    right: -3px;
    width: 118px;
    height: 118px;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.92)) drop-shadow(0 0 14px var(--neon-soft));
    transform: translateY(-50%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.link:hover .dragon,
.link:focus-visible .dragon {
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 1)) drop-shadow(0 0 18px var(--neon));
    transform: translateY(-50%) scale(1.08) rotate(-3deg);
}

@media (max-width: 780px) {
    body {
        background-position: center top;
        background-attachment: fixed;
    }

    .profile-shell {
        width: min(100%, 430px);
        padding: 0 0 128px;
    }

    .profile-hero {
        min-height: 620px;
        border-radius: 0 0 28px 28px;
        border-top: 0;
        border-left: 0;
        border-right: 0;
    }

    .profile-cover {
        object-position: center center;
    }

    .profile-hero::before {
        top: -10px;
        left: -92px;
        width: min(72vw, 270px);
        opacity: 0.86;
        transform: rotate(8deg);
        mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.46) 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.46) 80%, transparent 100%);
    }

    .profile-hero::after {
        inset: 74% 0 0;
    }

    .hero-actions {
        top: 18px;
        right: 18px;
        gap: 8px;
    }

    .hero-action {
        min-height: 40px;
        padding: 0 13px;
        font-size: 12px;
    }

    .share-action {
        width: 42px;
        padding: 0;
        font-size: 0;
    }

    .share-action::before {
        content: "+";
        font-size: 18px;
    }

    .profile-info {
        bottom: 34px;
        width: min(100% - 24px, 410px);
    }

    .profile-info p {
        font-size: 15px;
    }

    .portal-panel {
        width: min(100% - 28px, 390px);
        margin: 22px auto 0;
        padding: 0;
        gap: 18px;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 50%;
        bottom: 10px;
        z-index: 30;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: min(calc(100% - 20px), 410px);
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 24px;
        background: rgba(0, 0, 0, 0.58);
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.30);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        transform: translateX(-50%);
    }

    .mobile-bottom-nav a {
        min-height: 44px;
        padding: 8px 6px;
        font-size: 11px;
    }

    .portal-button,
    .test-card {
        min-height: 84px;
        grid-template-columns: 68px minmax(0, 1fr) 84px;
        padding: 6px 0;
    }

    .live-buttons .test-card {
        grid-template-columns: 82px minmax(0, 1fr) 88px;
        column-gap: 8px;
        min-height: 92px;
    }

    .live-buttons .test-card::after {
        right: -4px;
        width: 86px;
        height: 86px;
    }

    .live-buttons {
        gap: 18px;
    }

    .live-buttons .portal-icon.image-icon.stripchat-icon,
    .live-buttons .portal-icon.image-icon.livejasmin-icon,
    .live-buttons .portal-icon.image-icon.streamate-icon,
    .live-buttons .portal-icon.image-icon.flirt4free-icon {
        width: 60px;
        height: 60px;
    }

    .live-buttons .portal-icon.image-icon.camsoda-icon {
        width: 84px;
        height: 40px;
    }

    .social-buttons .test-card {
        grid-template-columns: 82px minmax(0, 1fr) 78px;
    }

    .social-buttons .instagram-icon {
        width: 60px;
        height: 60px;
    }

    .social-buttons .x-icon {
        width: 58px;
        height: 58px;
    }

    .social-buttons .reddit-icon {
        width: 58px;
        height: 58px;
    }

    .social-buttons .tiktok-icon {
        width: 52px;
        height: 66px;
    }

    .purchase-buttons .test-card {
        grid-template-columns: 82px minmax(0, 1fr) 78px;
    }

    .purchase-buttons .onlyfans-icon {
        width: 58px;
        height: 58px;
    }

    .purchase-buttons .fansly-icon {
        width: 72px;
        height: 62px;
    }

    .portal-button::after,
    .test-card::after {
        right: -4px;
        width: 78px;
        height: 78px;
    }

    .live-buttons .test-card::after {
        right: -4px;
        width: 86px;
        height: 86px;
    }

    .portal-icon {
        width: 58px;
        height: 58px;
        font-size: 15px;
    }

    .portal-button strong,
    .test-card strong {
        min-height: 48px;
        padding: 9px 18px;
        font-size: 16px;
    }

    .site-nav {
        top: 10px;
        align-items: center;
        justify-content: center;
        width: max-content;
        max-width: calc(100% - 20px);
        min-height: 52px;
        padding: 9px 14px;
        border-radius: 999px;
    }

    .brand-link {
        text-align: center;
    }

    .brand-group {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .page,
    .page-inner {
        width: min(100% - 24px, 430px);
        padding-top: 92px;
        padding-bottom: 128px;
    }

    .inner-header {
        padding: 8px 4px 18px;
        border-radius: 0;
    }

    .claw-image {
        opacity: 0.54;
    }

    .claw-top {
        top: -82px;
        right: 105px;
        width: 390px;
        transform: rotate(-8deg);
    }

    .claw-middle {
        top: 0;
        left: 54%;
        width: 0;
        transform: translateX(-6%) rotate(5deg);
    }

    .claw-bottom {
        bottom: -28px;
        left: -18px;
        width: 480px;
        transform: rotate(-7deg);
    }

    .link {
        grid-template-columns: 68px minmax(0, 1fr) 84px;
        max-width: 380px;
        min-height: 84px;
    }

    .icon {
        width: 58px;
        height: 58px;
    }

    .pill {
        min-height: 48px;
        padding: 9px 18px;
        font-size: 15px;
    }

    .dragon {
        top: 50%;
        right: -2px;
        width: 86px;
        height: 86px;
    }

    .video-link {
        width: min(100%, 390px);
        margin-top: 34px;
        border-radius: 24px;
    }

    .video-link::after {
        right: -24px;
        bottom: -24px;
        width: min(38vw, 150px);
    }

    .promo-video {
        border-radius: 22px;
    }

    .copy-toast {
        bottom: 86px;
        width: min(calc(100% - 24px), 340px);
    }
}

@media (max-width: 420px) {
    .profile-hero {
        min-height: 598px;
    }

    .profile-hero::before {
        top: -8px;
        left: -100px;
        width: min(78vw, 250px);
        opacity: 0.82;
        transform: rotate(8deg);
    }

    .status-row span,
    .eyebrow {
        font-size: 10px;
    }

    .portal-button strong,
    .test-card strong {
        padding-inline: 14px;
        font-size: 14px;
    }

    .live-buttons .test-card,
    .social-buttons .test-card,
    .purchase-buttons .test-card {
        grid-template-columns: 76px minmax(0, 1fr) 68px;
    }

    .live-buttons .test-card {
        grid-template-columns: 70px minmax(0, 1fr) 82px;
        column-gap: 6px;
        min-height: 92px;
    }

    .live-buttons .test-card::after {
        right: -4px;
        width: 78px;
        height: 78px;
    }

    .live-buttons .portal-icon.image-icon.stripchat-icon,
    .live-buttons .portal-icon.image-icon.livejasmin-icon,
    .live-buttons .portal-icon.image-icon.streamate-icon,
    .live-buttons .portal-icon.image-icon.flirt4free-icon {
        width: 52px;
        height: 52px;
    }

    .live-buttons .portal-icon.image-icon.camsoda-icon {
        width: 70px;
        height: 34px;
    }

    .social-buttons .instagram-icon,
    .social-buttons .x-icon,
    .social-buttons .reddit-icon {
        width: 52px;
        height: 52px;
    }

    .social-buttons .tiktok-icon {
        width: 46px;
        height: 58px;
    }

    .purchase-buttons .onlyfans-icon {
        width: 52px;
        height: 52px;
    }

    .purchase-buttons .fansly-icon {
        width: 62px;
        height: 56px;
    }

    .link {
        grid-template-columns: 58px minmax(0, 1fr) 72px;
        max-width: 340px;
    }

    .icon {
        width: 52px;
        height: 52px;
    }

    .pill {
        min-height: 46px;
        padding-inline: 14px;
        font-size: 14px;
    }

    .dragon {
        top: 50%;
        right: 0;
        width: 72px;
        height: 72px;
    }
}
