/* ============================================================
   TSHIRT·DZ
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    /* Core palette */
    --purple: #8b5cf6;
    --purple-bright: #a78bfa;
    --purple-dim: rgba(139, 92, 246, 0.08);
    --purple-glow: rgba(139, 92, 246, 0.3);
    --white: #f5f3ef;
    --white-60: rgba(245, 243, 239, 0.6);
    --white-35: rgba(245, 243, 239, 0.35);
    --white-15: rgba(245, 243, 239, 0.15);
    --white-06: rgba(245, 243, 239, 0.06);
    --black: #050505;
    --surface: #0a0a0a;
    --surface-2: #0f0f0f;
    --border: #141414;
    --border-2: #1a1a1a;
    --glass: rgba(15, 15, 15, 0.75);

    /* Anime series colours */
    --c-naruto: #f97316;
    --c-one-piece: #a78bfa;
    --c-jjk: #60a5fa;
    --c-aot: #84cc16;
    --c-ds: #f87171;
    --c-solo: #4f46e5;
    --c-ghoul: #dc2626;
    --c-games: #10b981;
    --c-kaiju: #eab308;
    --c-db: #f59e0b;

    /* Motion */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.18s;
    --transition-base: 0.35s;
    --transition-slow: 0.6s;
}

/* ── BASE ── */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
    cursor: none;
    min-height: 100vh;
}

/* ── HERO CAROUSEL ── */
.hero-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
    margin-bottom: clamp(30px, 8vw, 60px);
    padding: 20px 0;
    opacity: 0;
    animation: slideUp .8s .1s var(--ease-out-expo) forwards;
    direction: ltr !important;
    cursor: grab;
}

.hero-carousel.grabbing {
    cursor: grabbing;
}

.hero-carousel.grabbing .c-card {
    pointer-events: none;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    direction: ltr !important;
}


.c-card {
    width: 220px;
    height: auto;
    flex-shrink: 0;
    transition: transform var(--transition-base), border-color var(--transition-base);
    text-align: right;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    background: var(--surface);
}

.c-card .thumb-wrap {
    aspect-ratio: 1;
}

.c-card .card-body {
    padding: 12px 14px 14px;
}

.c-card .card-tag {
    margin-bottom: 6px;
    font-size: 7px;
}

.c-card .card-name {
    font-size: 16px;
    margin-bottom: 2px;
}

.c-card .card-sub {
    font-size: 8px;
}

.c-card .card-idx {
    font-size: 9px;
    top: 10px;
    left: 10px;
}


.c-card .card-idx {
    font-size: 9px;
    top: 10px;
    left: 10px;
}

.hero-carousel::before,
.hero-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--black), transparent);
}

.hero-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--black), transparent);
}

.c-card:hover {
    border-color: var(--purple-glow);
    transform: translateY(-5px);
    z-index: 5;
}




/* ── FILM GRAIN ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: .35;
}

/* ── CUSTOM CURSOR ── */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--purple);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width var(--transition-fast), height var(--transition-fast), opacity .1s;
    will-change: transform;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(124, 58, 237, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width var(--transition-base), height var(--transition-base), opacity var(--transition-base);
    will-change: transform;
}

.cursor.hover {
    width: 6px;
    height: 6px
}

.cursor-ring.hover {
    width: 52px;
    height: 52px;
    border-color: var(--purple-glow)
}

.cursor.click {
    transform: translate(-50%, -50%) scale(.7)
}

/* ── LOADER ── */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 28px;
    transition: opacity .6s var(--ease-in-out), visibility .6s;
}

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

.loader-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    letter-spacing: 8px;
    color: var(--white);
    overflow: hidden;
    direction: ltr;
}

.loader-logo span {
    display: inline-block;
    animation: slideUp .7s .15s var(--ease-out-expo) both;
}

.loader-bar-wrap {
    width: 200px;
    height: 1px;
    background: var(--border-2);
    overflow: hidden;
    position: relative;
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--purple-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .12s linear;
}

.loader-pct {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--purple-bright);
    text-shadow: 0 0 10px var(--purple-glow);
    direction: ltr;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    background: rgba(5, 5, 5, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: padding var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}

nav.scrolled {
    padding: 16px 48px;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.hex {
    width: 38px;
    height: 38px;
    background: var(--purple);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-base), filter var(--transition-base);
}

.hex:hover {
    transform: rotate(30deg);
    filter: brightness(1.15)
}

.hex span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    color: #fff;
    letter-spacing: .5px;
    line-height: 1.1;
    direction: ltr;
    text-align: center;
}

.nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--white);
    direction: ltr;
}

.nav-cta {
    font-family: 'Cairo', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 9px 22px;
    border: 1px solid var(--white-15);
    color: var(--white-60);
    background: transparent;
    cursor: none;
    transition: border-color var(--transition-base), color var(--transition-base), background var(--transition-base), transform var(--transition-fast);
    animation: breathe 2.5s ease-in-out infinite;
}

@keyframes breathe {

    0%,
    100% {
        border-color: rgba(139, 92, 246, 0.15);
        box-shadow: none;
        background: transparent;
        color: var(--white-60);
        transform: scale(1);
    }

    50% {
        border-color: rgba(167, 139, 250, 1);
        box-shadow:
            0 0 18px rgba(139, 92, 246, 0.7),
            0 0 40px rgba(139, 92, 246, 0.35),
            0 0 80px rgba(139, 92, 246, 0.15),
            inset 0 0 16px rgba(167, 139, 250, 0.15);
        background: rgba(139, 92, 246, 0.18);
        color: #fff;
        transform: scale(1.04);
    }
}

.nav-cta:hover {
    animation: none;
    border-color: var(--purple-bright);
    background: var(--purple);
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 50px rgba(139, 92, 246, 0.4),
        0 0 100px rgba(139, 92, 246, 0.2);
}

.nav-cta:active {
    transform: translateY(0)
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 1px 80px;
    text-align: center;
}

/* Radial glow at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(ellipse at center bottom, rgba(139, 92, 246, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 20vw, 260px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(124, 58, 237, .07);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 8px;
    animation: bgPulse 10s ease-in-out infinite;
    will-change: transform;
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: .5;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: .9;
        transform: translate(-50%, -50%) scale(1.025)
    }
}

.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, transparent 15%, rgba(124, 58, 237, .5) 50%, transparent 85%, transparent 100%);
    animation: scan 7s linear infinite;
    pointer-events: none;
    will-change: top;
}

@keyframes scan {
    0% {
        top: -4px;
        opacity: 0
    }

    8% {
        opacity: 1
    }

    92% {
        opacity: .6
    }

    100% {
        top: 100%;
        opacity: 0
    }
}

.grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.grid-lines::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 1) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .035;
}

.hero-eyebrow {
    position: relative;
    z-index: 2;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 24px;
    font-weight: 500;
    opacity: 0;
    animation: slideUp .8s .3s var(--ease-out-expo) forwards;
}

.hero-title {
    position: relative;
    z-index: 2;
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-size: clamp(42px, 12vw, 130px);
    line-height: .9;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    opacity: 0;
    animation: slideUp .9s .5s var(--ease-out-expo) forwards;
}

.hero-title .line2 {
    color: transparent;
    -webkit-text-stroke: 2px var(--purple);
    display: inline-block;
    margin-right: 14px;
    /* subtle text shimmer */

    background: linear-gradient(90deg, var(--purple), var(--purple-bright), var(--purple));
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 4s linear infinite, slideUp .9s .5s var(--ease-out-expo) forwards;
    opacity: 0;
}

.hero-title .line3 {
    display: block;
    color: var(--white-35);
    font-family: 'Cairo', sans-serif;
    font-weight: 300;
    font-size: .38em;
    letter-spacing: 2px;
    margin-top: 18px;
}

@keyframes shimmerText {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 200%
    }
}


.hero-sub {
    position: relative;
    z-index: 2;
    font-size: 14px;
    color: var(--white-35);
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: .5px;
    opacity: 0;
    animation: slideUp .8s .7s var(--ease-out-expo) forwards;
}

.hero-btns {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp .8s .9s var(--ease-out-expo) forwards;
}

.btn-main {
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 15px 40px;
    background: var(--purple);
    color: #fff;
    border: none;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-base);
}

.btn-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform .5s var(--ease-out-expo);
}

.btn-main:hover::before {
    transform: translateX(110%) skewX(-15deg)
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.btn-main:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.btn-ghost {
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 40px;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white-15);
    cursor: none;
    transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-fast);
}

.btn-ghost:hover {
    border-color: var(--purple);
    background: var(--purple-dim);
    transform: translateY(-2px);
}

.btn-ghost:active {
    transform: translateY(0)
}

/* ── TOUCH DEVICE OVERRIDES ── */
@media (hover: none),
(pointer: coarse) {

    .cursor,
    .cursor-ring {
        display: none !important;
    }

    body,
    .btn-main,
    .btn-ghost,
    .nav-cta,
    .fb,
    .cta-fb,
    .card,
    .modal-close,
    .modal-nav,
    .hero-scroll,
    .scroll-label,
    .hover-screenshot {
        cursor: auto !important;
    }

    .btn-main,
    .btn-ghost,
    .nav-cta,
    .fb,
    .cta-fb,
    .card,
    .modal-close,
    .modal-nav {
        cursor: pointer !important;
    }
}


.hero-scroll {
    position: relative;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
    z-index: 10;
}


.scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--purple), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: .8
    }

    50% {
        transform: scaleY(.4);
        opacity: .2
    }
}

.scroll-label {
    font-size: 8px;
    letter-spacing: 3px;
    color: rgba(240, 237, 232, .18);
    text-transform: uppercase
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── MARQUEE ── */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 13px 0;
    position: relative;
    z-index: 2;
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused
}

.marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
    direction: ltr;
    will-change: transform;
}

.marquee-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    color: #444;
    transition: color var(--transition-base), text-shadow var(--transition-base);
}

.marquee-section:hover .marquee-track span {
    color: var(--purple-bright);
    text-shadow: 0 0 15px var(--purple-glow);
}

.marquee-track .dot {
    color: var(--purple);
    font-size: 16px;
    line-height: 1;
    opacity: .6
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── FEATURES STRIP ── */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.feat {
    padding: 44px 36px;
    border-left: 1px solid var(--border);
    text-align: right;
    position: relative;
    overflow: hidden;
    transition: background var(--transition-slow);
}

.feat:last-child {
    border-left: none
}

.feat:hover {
    background: rgba(139, 92, 246, 0.05);
    transform: scale(1.01);
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Bottom sweep line */
.feat::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to left, var(--purple), transparent);
    transition: width .5s var(--ease-out-expo);
}

.feat:hover::after {
    width: 100%
}

/* Top corner accent */
.feat::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: rgba(124, 58, 237, .3);
    transition: width .4s var(--ease-out-expo) .1s;
}

.feat:hover::before {
    width: 40%
}

.feat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: rgba(124, 58, 237, .1);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: 2px;
    direction: ltr;
    transition: color var(--transition-base);
}

.feat:hover .feat-num {
    color: rgba(124, 58, 237, .2)
}

.feat-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px
}

.feat-desc {
    font-size: 12px;
    color: rgba(240, 237, 232, .28);
    font-weight: 300;
    line-height: 1.9
}

/* ── COLLECTION ── */
.collection {
    padding: 80px 40px;
    position: relative;
    z-index: 2
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 3px;
    color: var(--white);
}

.section-count {
    font-size: 11px;
    color: rgba(240, 237, 232, .18);
    letter-spacing: 2px;
    direction: ltr
}

/* ── FILTER BUTTONS ── */
.filters {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.fb {
    font-family: 'Cairo', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 8px 22px;
    border: 1px solid var(--border-2);
    background: var(--surface);
    color: var(--white-60);
    cursor: none;

    transition: all var(--transition-base);
    border-radius: 100px;
    position: relative;
}

.fb:hover {
    color: var(--white);
    border-color: var(--white-15);
    transform: translateY(-2px);
}

.fb.active {
    color: #fff;
    border-color: var(--purple);
    background: var(--purple);
    box-shadow: 0 4px 15px var(--purple-glow);
}


/* ── CARDS GRID ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1px;
    background: var(--surface-2);
}

.card {
    background: var(--black);
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: background var(--transition-base);
}

.card:hover {
    background: var(--surface-2);
    border-color: var(--purple-glow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card:hover .card-thumb img {
    transform: scale(1.08);
    filter: brightness(.3) saturate(1.2);
}

.card:hover .card-name {
    color: var(--purple-bright);
}


.card:hover .card-idx {
    color: #2e2e2e
}

/* Image area */
.thumb-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: var(--surface);
}

.card-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .65s var(--ease-out-expo), filter .4s ease;
    will-change: transform, filter;
}

/* Card hover overlay */
.card-hover-ui {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s var(--ease-out-expo);
    pointer-events: none;
}

.card:hover .card-hover-ui {
    pointer-events: all
}

.hover-screenshot {
    font-family: 'Cairo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 13px 30px;
    background: #fff;
    color: #000;
    border: none;
    cursor: none;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.hover-screenshot:hover {
    background: var(--white);
    transform: scale(1.04)
}

.hover-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, .18);
    letter-spacing: 2px;
    direction: ltr;
}

/* Card body */
.card-body {
    padding: 20px 22px 24px;
    background: linear-gradient(to bottom, transparent, var(--surface));
    border-top: 1px solid var(--white-06);
    text-align: right;
    transition: transform var(--transition-base);
}

.card:hover .card-body {
    transform: translateY(-4px);
}

.card-tag {
    display: inline-block;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .8px;
    padding: 3px 9px;
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: opacity var(--transition-base);
}

.card:hover .card-tag {
    opacity: 1
}

/* Series tag colours — using CSS variables */
.t-naruto {
    background: rgba(249, 115, 22, .08);
    color: var(--c-naruto);
    border: 1px solid rgba(249, 115, 22, .16)
}

.t-one-piece {
    background: rgba(167, 139, 250, .08);
    color: var(--c-one-piece);
    border: 1px solid rgba(167, 139, 250, .16)
}

.t-jujutsu-kaisen {
    background: rgba(96, 165, 250, .08);
    color: var(--c-jjk);
    border: 1px solid rgba(96, 165, 250, .16)
}

.t-attack-on-titan {
    background: rgba(132, 204, 22, .08);
    color: var(--c-aot);
    border: 1px solid rgba(132, 204, 22, .16)
}

.t-demon-slayer {
    background: rgba(248, 113, 113, .08);
    color: var(--c-ds);
    border: 1px solid rgba(248, 113, 113, .16)
}

.t-solo-leveling {
    background: rgba(79, 70, 229, .08);
    color: var(--c-solo);
    border: 1px solid rgba(79, 70, 229, .16)
}

.t-tokyo-ghoul {
    background: rgba(220, 38, 38, .08);
    color: var(--c-ghoul);
    border: 1px solid rgba(220, 38, 38, .16)
}

.t-games {
    background: rgba(16, 185, 129, .08);
    color: var(--c-games);
    border: 1px solid rgba(16, 185, 129, .16)
}

.t-kaiju-no-8 {
    background: rgba(234, 179, 8, .08);
    color: var(--c-kaiju);
    border: 1px solid rgba(234, 179, 8, .16)
}

.t-dragon-ball {
    background: rgba(245, 158, 11, .08);
    color: var(--c-db);
    border: 1px solid rgba(245, 158, 11, .16)
}

.card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 23px;
    letter-spacing: 1px;
    color: #888;
    display: block;
    transition: color var(--transition-base);
    margin-bottom: 4px;
}

.card-sub {
    font-size: 10px;
    color: #272727;
    font-weight: 300;
    letter-spacing: .3px
}

.card-idx {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10px;
    color: #191919;
    letter-spacing: 1px;
    direction: ltr;
    transition: color var(--transition-base);
}

/* ── CTA SECTION ── */
.cta-section {
    margin: 0 40px 80px;
    padding: 72px 56px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Animated border glow on hover */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 110%, rgba(124, 58, 237, .14), transparent 65%);
    pointer-events: none;
    transition: opacity var(--transition-slow);
}

.cta-section:hover::before {
    opacity: 1.5
}

/* Corner accents */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: .3;
}

.cta-label {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--purple);
    margin-bottom: 18px;
    text-transform: uppercase
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 7vw, 80px);
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1;
}

.cta-desc {
    font-size: 13px;
    color: rgba(240, 237, 232, .28);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}

.cta-fb {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--white);
    border: 1px solid #252525;
    padding: 16px 40px;
    transition: border-color var(--transition-base), background var(--transition-base),
        letter-spacing var(--transition-base), transform var(--transition-fast),
        box-shadow var(--transition-base);
    cursor: none;
    direction: ltr;
}

.cta-fb:hover {
    border-color: var(--purple);
    background: var(--purple-dim);
    letter-spacing: 3px;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(124, 58, 237, .2);
}

.fb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple);
    animation: fbPulse 2.2s ease-in-out infinite;
}

@keyframes fbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(.55);
        opacity: .3
    }
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 26px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.foot-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--white-15);
    direction: ltr;
    transition: color var(--transition-base);
}

.foot-brand:hover {
    color: var(--white-35);
}

.foot-copy {
    font-size: 10px;
    color: var(--white-15);
    letter-spacing: 1px
}

/* ── MODAL ── */
.zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease-in-out), visibility .4s;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.zoom-modal.active {
    opacity: 1;
    visibility: visible
}

.zoom-modal.active .modal-content {
    transform: scale(1);
    opacity: 1
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    transform: scale(.94);
    opacity: 0;
    transition: transform .45s var(--ease-out-expo), opacity .4s ease;
}

.modal-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: 100%;
}

.zoomed-image {
    max-width: 100%;
    max-height: 68vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    /* Subtle glass border */
    background: var(--black);
}

.modal-info {
    text-align: center
}

.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
    color: var(--white);
}

.modal-description {
    font-size: .95rem;
    color: #555
}

/* Modal close */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, .6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 101;
    cursor: pointer;
    transition: background var(--transition-base), border-color var(--transition-base),
        transform var(--transition-base);
}

.modal-close:hover {
    background: var(--purple);
    border-color: var(--purple);
    transform: rotate(90deg) scale(1.1);
}

/* Modal nav arrows */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(124, 58, 237, .08);
    border: 1px solid rgba(124, 58, 237, .25);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-base), border-color var(--transition-base),
        box-shadow var(--transition-base), transform var(--transition-fast);
    font-size: 1.1rem;
    backdrop-filter: blur(4px);
}

.modal-nav:hover {
    background: var(--purple);
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(124, 58, 237, .4);
    transform: translateY(-50%) scale(1.08);
}

.modal-nav-row {
    display: contents;
    /* Keeps buttons absolute on desktop */
}

.modal-prev {
    right: 40px;
}

.modal-next {
    left: 40px;
}

/* Modal order button */
.modal-order {
    margin-top: 20px;
    padding: 14px 44px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background var(--transition-base), transform var(--transition-fast),
        box-shadow var(--transition-base);
    box-shadow: 0 4px 20px rgba(37, 211, 102, .18);
}

.modal-order:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .35);
}

.modal-order:active {
    transform: translateY(0)
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {

    .modal-nav-row {
        display: flex;
        gap: 20px;
        order: 3;
        /* Position below info */
    }

    .modal-prev,
    .modal-next {
        position: relative;
        inset: auto;
        /* Reset desktop positions */
        transform: none !important;
        margin: 0;
    }

    .modal-content {
        gap: 16px;
    }
}


@media(max-width:768px) {
    nav {
        padding: 14px 20px;
    }

    .hero {
        padding: 100px 1px 60px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .feat {
        border-left: none;
        border-bottom: 1px solid var(--border);
        padding: 30px 20px;
    }

    .collection {
        padding: 40px 20px;
    }

    .cta-section {
        margin: 0 20px 60px;
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 48px;
    }

    footer {
        padding: 24px 20px;
    }
}

@media(max-width:480px) {
    nav {
        padding: 12px 16px;
    }

    .nav-brand {
        font-size: 18px;
    }

    .hero {
        padding: 100px 1px 40px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-carousel::before,
    .hero-carousel::after {
        width: 60px;
    }


    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-main,
    .btn-ghost {
        width: 100%;
        max-width: none;
    }

    .hero-title .line2 {
        -webkit-text-stroke: 1px var(--purple);
        display: inline-block;
        margin-right: 10px;
    }

    .hero-eyebrow {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .hero-sub {
        font-size: 13px;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 14px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 10px;
        margin: 0 -16px 24px;
        padding: 0 16px;
    }

    .filters::-webkit-scrollbar {
        display: none;
    }

    .fb {
        flex-shrink: 0;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        background: var(--border);
    }

    .card-body {
        padding: 14px 10px;
    }

    .card-name {
        font-size: 15px;
    }

    .cta-title {
        font-size: 32px;
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .c-card {
        width: 150px;
        height: auto;
    }

    .hero-scroll {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 32px;
        opacity: 0.8;
    }

    .hero-bg-text {
        top: 65%;
        /* Adjusted for new hero content height on mobile */
    }

    .c-card .card-body {
        padding: 8px 10px 10px;
    }

    .c-card .card-name {
        font-size: 14px;
    }

    .c-card .card-tag {
        margin-bottom: 4px;
    }
}








/* ── REDUCED MOTION ── */
@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }

    .hero-bg-text {
        animation: none !important;
    }
}