:root {
    --color-rose: #fe3e94;
    --color-blue: #20d1fd;
    --color-smoke: #f7fbff;
    --color-orange: #f18f01;
    --color-black: #07090d;
    --color-panel: #101722;
    --color-panel-strong: #0b0f17;
    --color-border: #2b3344;
    --color-muted: #b8c2d3;
    --shadow-hot: 0 0 34px rgba(254, 62, 148, 0.32);
}

@font-face {
    font-family: DHFStoryBrush;
    src: url("/assets/fonts/DHFStoryBrush.ttf") format("truetype");
}

@font-face {
    font-family: BlenderProBook;
    src: url("/assets/fonts/BlenderProBook.otf") format("truetype");
}

* {
    box-sizing: border-box;
}

html {
    color: var(--color-smoke);
    font-size: 18px;
    min-height: 100vh;
    scroll-behavior: smooth;
    background-color: var(--color-black);
    background-image:
        linear-gradient(135deg, rgba(254, 62, 148, 0.18), transparent 35%),
        linear-gradient(225deg, rgba(32, 209, 253, 0.12), transparent 34%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 76px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 76px),
        linear-gradient(180deg, #15101a 0%, #07090d 48%, #09090c 100%);
}

body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    min-height: 100vh;
    margin: 0;
    color: var(--color-smoke);
    font-family: "Ubuntu", system-ui, sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
}

a {
    color: inherit;
}

header {
    grid-row: 1;
    grid-column: 1;
    color: var(--color-smoke);
    min-width: 0;
}

div#header-top {
    width: 100%;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.35rem clamp(1rem, 4vw, 4rem);
    z-index: 2;
    background-color: rgba(7, 9, 13, 0.92);
    border-top: 1px solid var(--color-rose);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-muted);
    text-decoration: none;
    text-transform: uppercase;
    font-family: "BlenderProBook", sans-serif;
    font-size: 1.05rem;
}

.top-link:hover {
    color: var(--color-blue);
}

div#header-logo {
    position: relative;
    width: 100%;
    min-height: 13rem;
    display: grid;
    grid-template-columns: minmax(12rem, 18rem) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1rem, 4vw, 3rem);
    overflow: hidden;
    padding: 1.2rem clamp(1rem, 4vw, 4rem);
    border-bottom: 1px solid rgba(254, 62, 148, 0.45);
    isolation: isolate;
}

div#header-logo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(7, 9, 13, 0.9) 0%, rgba(7, 9, 13, 0.54) 48%, rgba(7, 9, 13, 0.86) 100%),
        linear-gradient(180deg, rgba(254, 62, 148, 0.2), transparent);
}

div#header-logo p {
    position: relative;
    z-index: 1;
    max-width: 48rem;
    margin: 0;
    color: var(--color-smoke);
    font-family: "BlenderProBook", sans-serif;
    font-size: clamp(2rem, 4.5vw, 4.4rem);
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(254, 62, 148, 0.75), 2px 2px 0 #000;
}

div#header-logo img {
    position: relative;
    z-index: 1;
    width: min(100%, 18rem);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 3rem rgba(254, 62, 148, 0.62));
    background-color: rgba(7, 9, 13, 0.94);
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    padding: 0 1rem 1rem;
}

div#video-container {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.34;
}

div#video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shimmer {
    animation: logoPulse 6s ease-in-out infinite;
}

nav {
    grid-row: 2;
    grid-column: 1;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem clamp(1rem, 4vw, 4rem);
    color: var(--color-smoke);
    background-color: rgba(7, 9, 13, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
    z-index: 10;
    min-width: 0;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    width: min(100%, 76rem);
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    font-family: "BlenderProBook", sans-serif;
}

nav ul li {
    font-size: 1.25rem;
}

nav ul li a {
    display: inline-flex;
    align-items: center;
    min-height: 2.45rem;
    padding: 0.2rem 0.85rem;
    color: var(--color-smoke);
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

nav ul li a:hover,
nav ul li a:focus-visible {
    color: var(--color-blue);
    border-color: rgba(32, 209, 253, 0.45);
    background-color: rgba(32, 209, 253, 0.08);
    transform: translateY(-1px);
    outline: none;
}

.icon {
    display: inline-grid;
    width: 1.5rem;
    height: 1.5rem;
    place-items: center;
    margin-right: 0.45rem;
    color: var(--color-orange);
}

main {
    grid-row: 3;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    width: 100%;
    padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 4vw, 4rem);
    color: var(--color-smoke);
    background:
        linear-gradient(180deg, rgba(16, 23, 34, 0.42), rgba(7, 9, 13, 0.1)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 18px);
    min-width: 0;
}

.hero-copy {
    width: min(100%, 76rem);
    display: grid;
    gap: 1.15rem;
    min-width: 0;
}

.eyebrow,
.creation-kicker {
    margin: 0;
    color: var(--color-blue);
    font-family: "BlenderProBook", sans-serif;
    text-transform: uppercase;
}

.eyebrow {
    font-size: 1.3rem;
}

h1 {
    max-width: 58rem;
    margin: 0;
    font-family: "BlenderProBook", sans-serif;
    font-size: clamp(2.8rem, 7vw, 6.8rem);
    line-height: 0.9;
    text-transform: uppercase;
    text-shadow: 0 0 32px rgba(254, 62, 148, 0.36);
}

.lede {
    max-width: 48rem;
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.35rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 2.9rem;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-family: "BlenderProBook", sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.button-primary {
    color: #07090d;
    background: linear-gradient(90deg, var(--color-rose), var(--color-orange));
    box-shadow: var(--shadow-hot);
}

.button-secondary {
    color: var(--color-smoke);
    background-color: rgba(247, 251, 255, 0.06);
    border-color: rgba(247, 251, 255, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(32, 209, 253, 0.6);
    box-shadow: 0 0 24px rgba(32, 209, 253, 0.14);
}

.creations-grid {
    width: min(100%, 76rem);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    min-width: 0;
}

.creation-card {
    min-width: 0;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(247, 251, 255, 0.08), rgba(247, 251, 255, 0.03)),
        var(--color-panel-strong);
    border: 1px solid rgba(247, 251, 255, 0.13);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.creation-card:hover,
.creation-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(32, 209, 253, 0.5);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36), 0 0 32px rgba(32, 209, 253, 0.14);
}

.creation-card--camera {
    border-top: 3px solid var(--color-rose);
}

.creation-card--chaturbate {
    border-top: 3px solid var(--color-blue);
}

.creation-card--gothurbate {
    border-top: 3px solid var(--color-orange);
}

.creation-link {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    color: var(--color-smoke);
}

.creation-media {
    display: block;
    aspect-ratio: 16 / 9;
    background-color: #07090d;
    border-bottom: 1px solid rgba(247, 251, 255, 0.1);
    overflow: hidden;
}

.creation-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creation-content {
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
}

.creation-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.02rem;
}

.creation-title {
    display: block;
    margin: 0;
    color: var(--color-smoke);
    font-family: "BlenderProBook", sans-serif;
    font-size: clamp(2rem, 3vw, 2.85rem);
    line-height: 0.95;
    text-transform: uppercase;
    text-decoration: none;
}

.creation-title:hover,
.creation-title:focus-visible {
    color: var(--color-blue);
    outline: none;
}

.creation-description {
    display: block;
    color: var(--color-muted);
    line-height: 1.45;
}

.creation-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.85rem;
    margin-top: 0.4rem;
    color: var(--color-smoke);
    font-family: "BlenderProBook", sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
}

.creation-meta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
}

.creation-meta a:hover,
.creation-meta a:focus-visible {
    color: var(--color-blue);
    outline: none;
}

.contact-strip {
    width: min(100%, 76rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(254, 62, 148, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(254, 62, 148, 0.13), rgba(32, 209, 253, 0.09)),
        rgba(7, 9, 13, 0.74);
    min-width: 0;
}

.contact-strip span {
    color: var(--color-muted);
}

.contact-strip a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--color-blue);
    font-family: "BlenderProBook", sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
}

.contact-strip a:hover,
.contact-strip a:focus-visible {
    color: var(--color-orange);
    outline: none;
}

footer {
    grid-row: 4;
    grid-column: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 1rem;
    padding: 1.2rem clamp(1rem, 4vw, 4rem);
    color: var(--color-muted);
    background-color: rgba(7, 9, 13, 0.88);
    border-top: 1px solid rgba(247, 251, 255, 0.1);
    min-width: 0;
}

footer p {
    margin: 0;
}

@keyframes logoPulse {
    0%,
    100% {
        filter: drop-shadow(0 0 2.1rem rgba(254, 62, 148, 0.52));
    }

    50% {
        filter: drop-shadow(0 0 3.4rem rgba(32, 209, 253, 0.54));
    }
}

@media only screen and (max-width: 1000px) {
    .creations-grid {
        grid-template-columns: 1fr;
    }

    .creation-link {
        grid-template-columns: minmax(16rem, 42%) 1fr;
        grid-template-rows: 1fr;
    }

    .creation-media {
        aspect-ratio: auto;
        min-height: 100%;
    }
}

@media only screen and (max-width: 800px) {
    html {
        font-size: 16px;
    }

    div#header-logo {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 1rem;
        padding-top: 1rem;
    }

    div#header-logo img {
        width: min(16rem, 70vw);
    }

    div#header-logo p {
        max-width: 100%;
        font-size: clamp(1.85rem, 10vw, 3rem);
        overflow-wrap: break-word;
    }

    div#video-container video {
        display: none;
    }

    nav {
        position: static;
        overflow: hidden;
    }

    nav ul {
        justify-content: center;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: visible;
        flex-wrap: wrap;
        padding-bottom: 0.1rem;
    }

    nav ul li {
        flex: 0 0 auto;
        font-size: 1.08rem;
    }

    nav ul li a {
        padding-inline: 0.65rem;
    }

    .creation-link {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(2.35rem, 11vw, 3.25rem);
        overflow-wrap: break-word;
    }

    .lede {
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .creation-media {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .contact-strip {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
