* {
    box-sizing: border-box;
}

:root {
    --bg: #070304;
    --bg-soft: #100708;
    --panel: rgba(28, 11, 13, 0.86);
    --panel-hover: rgba(42, 14, 18, 0.95);
    --red: #ff3131;
    --red-bright: #ff5252;
    --ruby: #c70f27;
    --rose: #ff7c8e;
    --text: #fff7f8;
    --muted: #ad8c91;
    --border: rgba(255, 77, 77, 0.26);
    --shadow: rgba(255, 0, 30, 0.14);
}

html {
    min-height: 100%;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 50% -10%, rgba(145, 0, 24, 0.18), transparent 38%),
        linear-gradient(180deg, #090405 0%, #060304 100%);
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.page-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.page-glow-one {
    top: 4%;
    left: 50%;
    width: 360px;
    height: 360px;
    background: rgba(189, 0, 34, 0.18);
    transform: translateX(-50%);
}

.page-glow-two {
    right: -80px;
    bottom: 10%;
    width: 260px;
    height: 260px;
    background: rgba(255, 36, 64, 0.08);
}

.shell {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 64px 24px 42px;
}

.profile {
    text-align: center;
}

.profile-ring {
    position: relative;
    width: 178px;
    height: 178px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.profile-ring::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        conic-gradient(
            #ff2f49 0deg,
            #991225 120deg,
            transparent 200deg,
            #ff2f49 360deg
        );
    animation: rubySpin 4s linear infinite !important;
    transform-origin: 50% 50%;
    will-change: transform;
    z-index: 0;
}

.profile-ring::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--bg);
    z-index: 1;
}

.profile-image {
    position: relative;
    z-index: 2;
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
    background: transparent;
}

to {
        transform: rotate(360deg);
    }
}
to {
        transform: rotate(360deg);
    }
}

.eyebrow,
.section-label {
    margin: 0;
    color: #8b5f67;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.32em;
}

h1 {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0 8px;
    margin: 11px 0 5px;
    line-height: 0.92;
    text-transform: uppercase;
}

h1 .miss {
    width: 100%;
    margin-bottom: 3px;
    color: #f7dfe2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.48em;
    padding-left: 0.48em;
}

h1 .ruby,
h1 .vale {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 11vw, 4.4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

h1 .ruby {
    color: #ef233c;
    text-shadow: 0 2px 18px rgba(255, 35, 55, 0.16);
}

h1 .vale {
    color: #fff8f9;
}

.tagline {
    margin: 13px 0 0;
    color: #ff8595;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.06rem;
    font-style: italic;
}

.subtagline {
    margin: 7px 0 0;
    color: #8f7277;
    font-size: 0.84rem;
    letter-spacing: 0.03em;
}

.link-group {
    margin-top: 34px;
}

.featured {
    margin-top: 42px;
}

.section-label {
    margin-bottom: 12px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 76px;
    margin-bottom: 12px;
    padding: 13px 16px;
    color: inherit;
    text-decoration: none;
    background:
        linear-gradient(180deg, rgba(29, 13, 15, 0.94), rgba(19, 8, 10, 0.96));
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 8px 24px rgba(0, 0, 0, 0.18);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.link-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 86, 103, 0.58);
    background:
        linear-gradient(180deg, rgba(46, 16, 20, 0.98), rgba(25, 9, 12, 0.98));
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        0 0 24px var(--shadow);
}

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

.primary-card {
    border-color: rgba(255, 57, 75, 0.52);
    background:
        linear-gradient(135deg, rgba(55, 11, 18, 0.98), rgba(22, 7, 10, 0.98));
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        0 0 28px rgba(255, 0, 40, 0.08);
}

.icon-box {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 91, 106, 0.12);
    border-radius: 13px;
    color: #ff5367;
    background: rgba(114, 10, 24, 0.18);
    font-size: 1.15rem;
}

.icon-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.link-copy {
    min-width: 0;
    flex: 1;
}

.link-copy strong,
.link-copy small {
    display: block;
}

.link-copy strong {
    color: #fff7f8;
    font-size: 1rem;
    font-weight: 750;
}

.link-copy small {
    margin-top: 4px;
    overflow: hidden;
    color: #a9868d;
    font-size: 0.8rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.arrow {
    flex: 0 0 auto;
    color: #814a54;
    font-size: 1.22rem;
    transition:
        transform 180ms ease,
        color 180ms ease;
}

.link-card:hover .arrow {
    color: #ff6e7e;
    transform: translateX(3px);
}

.notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 31px 0 0;
    color: #71545a;
    font-size: 0.72rem;
    text-align: center;
}

.notice-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d22b43;
    box-shadow: 0 0 10px rgba(255, 48, 75, 0.5);
}

footer {
    margin-top: 34px;
    color: #4f3c40;
    font-size: 0.68rem;
    line-height: 1.8;
    text-align: center;
}

footer p {
    margin: 0;
}

.footer-domain {
    letter-spacing: 0.08em;
}


.age-gate-open {
    overflow: hidden;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 28%, rgba(173, 8, 32, 0.24), transparent 34%),
        rgba(4, 1, 2, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 1;
    visibility: visible;
    transition:
        opacity 220ms ease,
        visibility 220ms ease;
}

.age-gate-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-gate-card {
    width: min(100%, 430px);
    padding: 38px 32px 30px;
    text-align: center;
    border: 1px solid rgba(255, 62, 82, 0.42);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(38, 8, 13, 0.97), rgba(13, 4, 6, 0.99));
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.52),
        0 0 44px rgba(255, 31, 61, 0.10);
}

.age-gate-badge {
    display: grid;
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;
    place-items: center;
    border: 2px solid #ff334e;
    border-radius: 50%;
    color: #fff8f9;
    background: rgba(139, 8, 28, 0.22);
    box-shadow:
        inset 0 0 22px rgba(255, 41, 67, 0.10),
        0 0 24px rgba(255, 41, 67, 0.18);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.72rem;
    font-weight: 700;
}

.age-gate-kicker {
    margin: 0 0 9px;
    color: #bd7883;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.30em;
}

.age-gate h2 {
    margin: 0;
    color: #fff8f9;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
    font-weight: 600;
}

.age-gate-copy {
    max-width: 340px;
    margin: 16px auto 0;
    color: #b99a9f;
    font-size: 0.91rem;
    line-height: 1.65;
}

.age-gate-actions {
    display: grid;
    gap: 11px;
    margin-top: 27px;
}

.age-gate-actions button {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.age-gate-actions button:hover {
    transform: translateY(-1px);
}

.age-gate-enter {
    border: 1px solid #ff3b54;
    color: #fff;
    background:
        linear-gradient(135deg, #b20f2a, #6e0819);
    box-shadow: 0 9px 26px rgba(182, 13, 42, 0.24);
}

.age-gate-enter:hover {
    border-color: #ff7b8c;
    box-shadow:
        0 10px 30px rgba(182, 13, 42, 0.30),
        0 0 20px rgba(255, 45, 72, 0.10);
}

.age-gate-leave {
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: #9f7f85;
    background: rgba(255, 255, 255, 0.025);
}

.age-gate-leave:hover {
    border-color: rgba(255, 255, 255, 0.17);
    color: #d0b6bb;
    background: rgba(255, 255, 255, 0.045);
}

.age-gate-note {
    margin: 17px 0 0;
    color: #644a50;
    font-size: 0.68rem;
}

@media (max-width: 480px) {
    .age-gate {
        padding: 18px;
    }

    .age-gate-card {
        padding: 32px 22px 24px;
        border-radius: 20px;
    }

    .age-gate-badge {
        width: 72px;
        height: 72px;
        margin-bottom: 19px;
        font-size: 1.48rem;
    }

    .age-gate h2 {
        font-size: 1.95rem;
    }
}

@media (max-width: 480px) {
    .shell {
        padding: 42px 18px 32px;
    }

    .profile-ring {
        width: 152px;
        height: 152px;
        margin-bottom: 24px;
    }

    .featured {
        margin-top: 36px;
    }

    .link-group {
        margin-top: 29px;
    }

    .link-card {
        min-height: 72px;
        padding: 12px 14px;
        border-radius: 15px;
    }

    .icon-box {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
*,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}


@keyframes rubySpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
