/* ============================================================
   NicoraX 2.0 — Main Stylesheet
   Design: Minimalistic Premium | Black/White/Red
   ============================================================ */

/* --- Variables --- */
:root {
    --color-bg:              #0c0a16;
    --color-surface:         #140f22;
    --color-surface2:        #1d1633;
    --color-border:          rgba(255,255,255,0.09);
    --color-text:            #f0f0f0;
    --color-muted:           rgba(240,240,240,0.45);
    --color-accent:          #FF2D2D;
    --color-accent-h:        #ff4444;
    --color-accent-warm:     #FF6B35;
    --color-accent-gradient: linear-gradient(135deg, #FF2D2D 0%, #FF6B35 100%);
    --color-accent-glow:     rgba(255,45,45,0.22);
    --color-white:           #ffffff;
    --radius-sm:             8px;
    --radius-md:             14px;
    --radius-lg:             20px;
    --radius-xl:             28px;
    --font-sans:             -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display:          -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-serif:            Georgia, 'Times New Roman', serif;
    --color-emerald:         #10b981;
    --color-emerald-dark:    #059669;
    --shadow-sm:             0 2px 12px rgba(0,0,0,0.4);
    --shadow-md:             0 8px 32px rgba(0,0,0,0.5);
    --shadow-lg:             0 24px 64px rgba(0,0,0,0.6);
    --shadow-glow:           0 0 0 1px rgba(255,45,45,0.18), 0 8px 40px rgba(255,45,45,0.2);
    --transition:            all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container--narrow { max-width: 900px; }
.section { padding: 80px 0; }
.main { min-height: 80vh; }

/* --- Flash Messages --- */
.flash {
    margin: 0;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid transparent;
}
.flash--success { background: rgba(34,197,94,0.12); color: #4ade80; border-color: rgba(34,197,94,0.2); }
.flash--error   { background: rgba(239,68,68,0.12);  color: #f87171; border-color: rgba(239,68,68,0.2); }
.flash--info    { background: rgba(59,130,246,0.12); color: #60a5fa; border-color: rgba(59,130,246,0.2); }

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(12,10,22,0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: var(--transition);
}
/* Gradient bottom border */
.nav::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(255,45,45,0.35) 25%,
        rgba(255,107,53,0.2) 75%,
        transparent 100%);
}
.nav__inner {
    display: flex;
    align-items: center;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 68px;
}
.nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav__logo-img {
    height: 38px;
    width: auto;
    display: block;
}
.nav__logo-x { color: var(--color-accent); }
.nav__links {
    display: flex;
    gap: 2px;
    margin-right: auto;
}
.nav__link {
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.nav__link:hover {
    color: var(--color-white);
    background: rgba(255,255,255,0.06);
}
.nav__link--active {
    color: var(--color-white);
    background: transparent;
}
.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,45,45,0.8);
}
.nav__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.nav__username {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
}
/* Language switcher */
.nav__lang {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
    margin-left: 4px;
}
.nav__lang-btn {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}
.nav__lang-btn:hover { color: rgba(255,255,255,0.75); }
.nav__lang-btn--active {
    background: var(--color-accent-gradient);
    color: #fff;
}
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    margin-left: auto;
    flex-shrink: 0;
}
.nav__burger span {
    display: block;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Push content below nav + category bar */
.main { padding-top: 68px; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}
.btn--primary {
    background: var(--color-accent-gradient);
    color: var(--color-white);
    border: 1px solid transparent;
    box-shadow: 0 2px 12px rgba(255,45,45,0.2);
}
.btn--primary:hover {
    background: linear-gradient(135deg, #ff4444 0%, #ff7a47 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(255,45,45,0.45);
}
.btn--outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}
.btn--outline:hover {
    border-color: rgba(255,255,255,0.3);
    background: var(--color-surface2);
}
.btn--ghost {
    background: var(--color-surface2);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--sm  { padding: 7px 14px; font-size: 13px; }
.btn--lg  { padding: 14px 32px; font-size: 15px; border-radius: var(--radius-md); }
.btn--full { width: 100%; }

/* === HERO === */
.hero {
    position: relative;
    min-height: calc(100vh - 64px);
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% -10%, rgba(255,45,45,0.16) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 15% 60%, rgba(255,107,53,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 85% 80%, rgba(255,45,45,0.07) 0%, transparent 60%);
    animation: hero-pulse 8s ease-in-out infinite alternate;
}
@keyframes hero-pulse {
    0%   { opacity: 1; }
    50%  { opacity: 0.75; }
    100% { opacity: 1; }
}
.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 40% 30% at 50% 50%, rgba(255,80,40,0.04) 0%, transparent 80%);
    animation: hero-drift 12s ease-in-out infinite alternate;
}
@keyframes hero-drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(3%, 5%) scale(1.08); }
}
/* Centered hero variant */
.hero--centered {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
}
.hero__inner--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    gap: 0;
}
.hero__title--gradient {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.75) 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}
.hero__title--gradient .hero__title-accent {
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__subtitle--centered {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Hero Search */
.hero__search { width: 100%; max-width: 660px; margin-bottom: 20px; }
.hero__search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 56px;
    padding: 6px 6px 6px 20px;
    transition: border-color .25s, box-shadow .25s, background .25s;
    backdrop-filter: blur(12px);
}
.hero__search-wrap:focus-within {
    border-color: rgba(224,32,32,0.7);
    background: rgba(255,255,255,0.1);
    box-shadow:
        0 0 0 4px rgba(224,32,32,0.12),
        0 0 32px rgba(224,32,32,0.18),
        0 0 64px rgba(224,32,32,0.08);
}
.hero__search-icon {
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
    margin-right: 10px;
    display: flex;
    align-items: center;
    transition: color .25s;
}
.hero__search-wrap:focus-within .hero__search-icon { color: rgba(224,32,32,0.8); }
.hero__search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    padding: 8px 0;
    min-width: 0;
}
.hero__search-input::placeholder { color: rgba(255,255,255,0.3); }
.hero__search-input::-webkit-search-cancel-button { display: none; }
.hero__search-btn {
    flex-shrink: 0;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 48px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.hero__search-btn:hover { background: #c01818; transform: scale(1.03); }
.hero__search-chips {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 14px;
}
.hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
    backdrop-filter: blur(6px);
}
.hero__chip:hover {
    background: rgba(224,32,32,0.12);
    border-color: rgba(224,32,32,0.35);
    color: rgba(255,255,255,0.9);
}
.hero__stats--centered {
    justify-content: center;
    margin-top: 48px;
    gap: 48px;
}

/* Legacy two-col hero (keep for non-centered pages) */
.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    min-height: calc(100vh - 64px);
}
.hero__content {
    position: relative;
    text-align: left;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px 6px 8px;
    background: rgba(255,45,45,0.1);
    border: 1px solid rgba(255,45,45,0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
}
.hero__badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,45,45,0.7);
    animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(255,45,45,0.7); }
    50%       { opacity: 0.5; box-shadow: 0 0 3px rgba(255,45,45,0.3); }
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(56px, 10vw, 116px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--color-white);
    margin-bottom: 20px;
}
.hero__title-accent {
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}
.hero__actions {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 52px;
}
.hero__stats {
    display: flex;
    gap: 36px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-white);
}
.hero__stat-label {
    font-size: 13px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* === SECTION HEADERS === */
.section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 16px;
}
.section__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
}
.section__subtitle {
    color: var(--color-muted);
    margin-top: 8px;
    font-size: 16px;
}
.section__link {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}
.section__link:hover { opacity: 0.8; }

/* === TYPE CARDS (Home) === */
.types__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.type-card {
    position: relative;
    padding: 36px 28px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}
.type-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: var(--transition);
}
.type-card--prompt::before { background: radial-gradient(ellipse at top left, rgba(255,45,45,0.12), transparent 70%); }
.type-card--music::before  { background: radial-gradient(ellipse at top left, rgba(255,107,53,0.12), transparent 70%); }
.type-card--video::before  { background: radial-gradient(ellipse at top left, rgba(255,45,45,0.12), transparent 70%); }
.type-card--image::before  { background: radial-gradient(ellipse at top left, rgba(255,71,87,0.12), transparent 70%); }
.type-card:hover { border-color: rgba(255,45,45,0.35); transform: none; box-shadow: var(--shadow-glow); }
.type-card:hover::before { opacity: 1; }
.type-card__icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
    color: var(--color-accent);
}
.type-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.type-card p { font-size: 14px; color: var(--color-muted); line-height: 1.6; margin-bottom: 20px; }
.type-card__count {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === GRID === */
.grid {
    display: grid;
    gap: 20px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* === CONTENT CARDS — base (prompts / music / video) === */
.card {
    background: linear-gradient(145deg, rgba(26,26,26,0.9), rgba(17,17,17,0.97));
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.card:hover {
    border-color: rgba(255,45,45,0.3);
    transform: none;
    box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.05);
}
.card__link { display: block; }
.card__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--color-surface2);
}
.card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card:hover .card__img { transform: scale(1.04); }
.card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-surface2), var(--color-surface));
}
.card__placeholder-icon {
    font-size: 40px;
    color: var(--color-accent);
    opacity: 0.5;
}
.card__overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}
.card__type-badge {
    padding: 4px 10px;
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.1);
}
.card__type-badge-model {
    font-weight: 400;
    opacity: 0.65;
}
.card__body { padding: 16px; }
.card__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-white);
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.card__desc {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}
.card__meta-artist { font-size: 12px; color: var(--color-accent); margin-bottom: 10px; }
.card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}
.card__author { font-size: 12px; color: var(--color-muted); font-weight: 500; }
.card__stats { display: flex; gap: 12px; font-size: 11px; color: var(--color-muted); }

/* === IMAGE CARDS — full-bleed overlay style === */
.card--image {
    aspect-ratio: 3/4;
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
    background: #0d0d0d;
}
.card--image:hover {
    border-color: rgba(255,45,45,0.3);
    transform: none;
    box-shadow: var(--shadow-glow);
}
.card--image .card__link {
    position: absolute;
    inset: 0;
    display: block;
}
.card--image .card__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
}
.card--image .card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card--image:hover .card__img { transform: scale(1.06); }

/* Gradient overlay — always visible at bottom */
.card--image .card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.55) 30%,
        rgba(0,0,0,0.15) 60%,
        transparent 100%
    );
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.card--image:hover .card__media::after {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.6) 35%,
        rgba(0,0,0,0.2) 65%,
        transparent 100%
    );
}
.card--image .card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 14px 12px;
    background: none;
    z-index: 1;
}
.card--image .card__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    -webkit-line-clamp: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.card--image .card__desc { display: none; }
.card--image .card__footer {
    border-top: none;
    padding-top: 8px;
    margin-top: 6px;
}
.card--image .card__author {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}
.card--image .card__stats {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    gap: 10px;
}

/* Mobile: 2 columns, taller aspect-ratio */
@media (max-width: 768px) {
    .card--image { aspect-ratio: 2/3; }
}
@media (max-width: 480px) {
    .card--image { aspect-ratio: 3/4; }
}

/* ── 18+ Adult content — blurred card ────────────────────────────────────── */
.card--adult .card__img {
    filter: blur(18px) brightness(0.55) saturate(0.6);
    transform: scale(1.08); /* hide blur edges */
    transition: filter 0.4s ease, transform 0.4s ease;
}
.card--adult:hover .card__img {
    filter: blur(18px) brightness(0.55) saturate(0.6);
    transform: scale(1.08);
}
/* Suppress the zoom-in hover since the image stays blurred */
.card--image.card--adult:hover .card__img {
    transform: scale(1.08);
}

/* Shield overlay — centered badge */
.card__adult-shield {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 2;
    pointer-events: none;
    background: rgba(0,0,0,0.18);
}
.card__adult-icon {
    font-size: 36px;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
}
.card__adult-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(220,38,38,0.85);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,100,100,0.4);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.card__adult-hint {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.03em;
}

/* Gradient on adult cards — darker at top to frame the badge */
.card--image.card--adult .card__media::after {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.1) 60%,
        rgba(0,0,0,0.75) 100%
    );
}

/* Red accent border */
.card--adult {
    border-color: rgba(220,38,38,0.3) !important;
}
.card--adult:hover {
    border-color: rgba(220,38,38,0.55) !important;
    box-shadow: 0 20px 60px rgba(180,0,0,0.35);
}

/* === CTA === */
.cta__box {
    position: relative;
    padding: 80px 48px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
}
.cta__glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255,45,45,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.cta__subtitle { font-size: 18px; color: var(--color-muted); margin-bottom: 36px; }

/* === EXPLORE === */
.explore__header { margin-bottom: 36px; }
.page__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}
.page__subtitle { font-size: 16px; color: var(--color-muted); }

/* === FILTERS === */
.filters { margin-bottom: 40px; }
.filters__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.filters__types { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-muted);
}
.filter-chip input { display: none; }
.filter-chip:hover { border-color: rgba(255,45,45,0.4); color: var(--color-white); }
.filter-chip--active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}
.filters__right { display: flex; gap: 10px; align-items: center; }
.filters__search { display: flex; gap: 8px; }
/* Album ticker — replaced .filters__albums with inline styles in explore.php */

/* === FORM INPUTS === */
.input {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}
.input:focus {
    border-color: rgba(255,45,45,0.5);
    box-shadow: 0 0 0 3px rgba(255,45,45,0.1);
}
.input--textarea { resize: vertical; min-height: 100px; }
.input--code {
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    min-height: 160px;
}
.input--file {
    padding: 8px;
    cursor: pointer;
}
.select {
    padding: 10px 14px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.select:focus { border-color: rgba(255,45,45,0.5); }

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.pagination__btn {
    padding: 8px 14px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
    transition: var(--transition);
}
.pagination__btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.pagination__btn--active { background: var(--color-accent); border-color: var(--color-accent); color: white; }

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    color: var(--color-muted);
}
.empty-state__icon { font-size: 56px; margin-bottom: 20px; opacity: 0.3; }
.empty-state h3 { font-size: 20px; font-weight: 700; color: var(--color-text); margin-bottom: 8px; }
.empty-state p { margin-bottom: 24px; }

/* === DETAIL PAGE === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 36px;
}
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { opacity: 0.4; }
.detail__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}
.detail__type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    background: rgba(255,45,45,0.12);
    color: var(--color-accent);
    border: 1px solid rgba(255,45,45,0.2);
}
.detail__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.detail__desc {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}
.detail__meta {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
}
.detail__meta-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}
.detail__meta-item:last-child { border-bottom: none; }
.detail__meta-label { font-size: 12px; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.detail__meta-val { font-size: 13px; font-weight: 600; }
.detail__actions { display: flex; flex-direction: column; gap: 10px; }

/* === VIEWERS === */
.viewer { border-radius: var(--radius-lg); overflow: hidden; }
.viewer--image { background: var(--color-surface); }
.viewer__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    max-height: 85vh;
    object-fit: contain;
}

/* === IMAGE GALLERY === */
.viewer--gallery { overflow: visible; }
.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-main .viewer__img { border-radius: var(--radius-lg); }

/* Prev / Next arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(12,10,22,0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.gallery-arrow:hover {
    background: rgba(255,45,45,0.25);
    border-color: rgba(255,45,45,0.4);
}
.gallery-arrow--prev { left: 12px; }
.gallery-arrow--next { right: 12px; }

/* Counter badge */
.gallery-counter {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(12,10,22,0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    pointer-events: none;
}

/* Thumbnail strip */
.gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 0 4px;
    overflow-x: auto;
    scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }

.gallery-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    background: none;
    opacity: 0.55;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-thumb:hover { opacity: 0.85; border-color: rgba(255,255,255,0.2); }
.gallery-thumb--active {
    opacity: 1;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(255,45,45,0.3);
}

/* === MULTI-IMAGE UPLOAD PREVIEW === */
.dropzone--multi { min-height: 140px; }
.img-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
    padding: 16px;
}
.img-grid-preview__item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-surface2);
    border: 1px solid var(--color-border);
}
.img-grid-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.img-grid-preview__item--primary::after {
    content: 'Haupt';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg, rgba(255,45,45,0.9), rgba(255,107,53,0.9));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    padding: 3px 0;
    letter-spacing: 0.5px;
}

.viewer--music { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.viewer__cover {
    position: relative;
    aspect-ratio: 1;
    max-height: 380px;
    overflow: hidden;
}
.viewer__cover img { width: 100%; height: 100%; object-fit: cover; }
.viewer__cover--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface2);
    min-height: 200px;
    font-size: 80px;
    color: var(--color-accent);
    opacity: 0.4;
}
.viewer__cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(10,10,10,0.8));
}
.viewer__audio-wrap { padding: 24px; }
.viewer__audio { width: 100%; }

.viewer--video { background: var(--color-surface2); border-radius: var(--radius-lg); overflow: hidden; }
.viewer__embed-wrap { position: relative; aspect-ratio: 16/9; }
.viewer__embed { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.viewer__video { width: 100%; display: block; border-radius: var(--radius-lg); }

.viewer--prompt {}
.prompt-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.prompt-box__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--color-surface2);
    border-bottom: 1px solid var(--color-border);
}
.prompt-box__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
}
.prompt-box__model {
    font-size: 12px;
    color: var(--color-muted);
    background: var(--color-surface);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    margin-right: auto;
}
.prompt-box__content {
    padding: 24px;
    font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(240,240,240,0.9);
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 520px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

/* === UPLOAD PAGE === */
.upload__header { margin-bottom: 48px; text-align: center; }
.type-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 6px;
}
.type-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-muted);
    transition: var(--transition);
    text-align: center;
}
.type-btn:hover { color: var(--color-white); }
.type-btn--active {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(255,45,45,0.3);
}

.upload-form {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group--submit { margin-top: 32px; border-top: 1px solid var(--color-border); padding-top: 28px; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.form-hint {
    font-size: 12px;
    color: var(--color-muted);
    margin-top: 6px;
    font-weight: 400;
}
.form-hint--center { text-align: center; }

/* === DROPZONE === */
.dropzone {
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropzone:hover, .dropzone--over {
    border-color: var(--color-accent);
    background: rgba(255,45,45,0.04);
}
.dropzone__inner {
    text-align: center;
    padding: 32px;
    pointer-events: none;
}
.dropzone__icon {
    font-size: 40px;
    color: var(--color-accent);
    opacity: 0.5;
    margin-bottom: 12px;
}
.dropzone__inner p { font-size: 14px; color: var(--color-muted); }
.dropzone__link { color: var(--color-accent); font-weight: 600; }
.dropzone__hint { font-size: 12px; opacity: 0.6; margin-top: 4px; }
.dropzone__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.dropzone__preview--img img { width: 100%; border-radius: var(--radius-sm); }
.dropzone--small { min-height: 100px; }

/* === TAB TOGGLE === */
.tab-toggle {
    display: inline-flex;
    background: var(--color-surface2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 3px;
    gap: 2px;
}
.tab-toggle__btn {
    padding: 7px 16px;
    border-radius: calc(var(--radius-sm) - 2px);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
    transition: var(--transition);
}
.tab-toggle__btn--active {
    background: var(--color-accent);
    color: white;
}

/* === INPUT WRAP (password toggle) === */
.input-wrap {
    position: relative;
    display: flex;
}
.input-wrap .input { padding-right: 44px; }
.input-wrap__toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted);
    font-size: 16px;
    transition: var(--transition);
}
.input-wrap__toggle:hover { color: var(--color-white); }

/* === AUTH PAGE === */
.auth {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 64px);
    padding: 40px 16px;
}
.auth__box {
    width: 100%;
    max-width: 420px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
}
.auth__brand {
    text-align: center;
    margin-bottom: 32px;
}
.auth__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}
.auth__subtitle { text-align: center; color: var(--color-muted); font-size: 15px; margin-bottom: 32px; }
.auth__form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.auth__form .btn--primary { margin-top: 8px; }
.auth__switch { text-align: center; font-size: 14px; color: var(--color-muted); }
.auth__switch a { color: var(--color-accent); font-weight: 600; }

/* === FOOTER === */
.footer {
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: 'NicoraX';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(30%);
    font-family: var(--font-display);
    font-size: clamp(80px, 14vw, 180px);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.03);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.footer__inner, .footer__bottom { position: relative; z-index: 1; }
.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}
.footer__brand { max-width: 260px; }
.footer__logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    display: block;
}
.footer__tagline { font-size: 13px; color: var(--color-muted); }
.footer__links { display: flex; gap: 60px; flex: 1; justify-content: flex-end; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-muted); margin-bottom: 4px; }
.footer__col a { font-size: 14px; color: var(--color-muted); transition: var(--transition); }
.footer__col a:hover { color: var(--color-white); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--color-border);
    font-size: 13px;
    color: var(--color-muted);
}
.footer__bottom a { color: var(--color-accent); }
.footer__version { font-size: 11px; opacity: 0.5; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .grid--4 { grid-template-columns: repeat(3, 1fr); }
    .types__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .detail__grid { grid-template-columns: 1fr; }
    .viewer__img { max-height: 75vh; }
    .gallery-main { max-height: 75vh; }
}
@media (max-width: 768px) {
    .grid--4 { gap: 12px; }
    .section { padding: 56px 0; }
    .nav__links { display: none; }
    .nav__actions { display: none; }
    .nav__burger { display: flex; }
    .nav__inner.nav--open .nav__links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-border);
        padding: 16px 24px;
    }
    .nav__inner.nav--open .nav__actions {
        display: flex;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: var(--color-surface);
        padding: 0 24px 16px;
        justify-content: center;
        gap: 12px;
        border-bottom: 1px solid var(--color-border);
    }
    .hero__title { letter-spacing: -1px; }
    .hero__stats { gap: 28px; }
    .hero__inner--centered { padding: 60px 20px 40px; }
    .hero__search-wrap { padding: 5px 5px 5px 16px; }
    .hero__search-btn { padding: 9px 18px; font-size: 13px; }
    .hero__search { max-width: 100%; }
    .hero__stats--centered { gap: 28px; margin-top: 36px; }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .types__grid { grid-template-columns: repeat(2, 1fr); }
    .detail__grid { grid-template-columns: 1fr; }
    .upload-form { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .type-selector { flex-wrap: wrap; }
    .auth__box { padding: 32px 24px; }
    .filters__row { flex-direction: column; align-items: stretch; }
    .filters__right { flex-wrap: wrap; }
    .section__header { flex-direction: column; align-items: flex-start; }
    .footer__inner { gap: 40px; }
    .footer__links { gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .grid--3 { grid-template-columns: 1fr; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .types__grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: center; }
    .cta__box { padding: 48px 24px; }
    .viewer__img { max-height: 70vh; }
    .gallery-main { max-height: 70vh; }
    .gallery-thumb { width: 56px; height: 56px; }
}

/* === SKELETON LOADING === */
.skeleton {
    background: linear-gradient(90deg, #18100f 25%, rgba(255,40,20,0.06) 50%, #18100f 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-surface2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,45,45,0.4); }

/* === SELECTION === */
::selection { background: rgba(255,45,45,0.3); color: var(--color-white); }

/* === VERIFIED BADGE === */
.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    margin-left: 3px;
    vertical-align: middle;
    flex-shrink: 0;
    position: relative;
    top: -1px;
}
.verified-badge svg {
    width: 14px;
    height: 14px;
    display: block;
}

/* Legal Pages */
.legal { padding-top: 80px; }
.legal__body {
    margin-top: 32px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    font-size: 15px;
    word-break: break-word;
}
.legal__body h2 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 8px;
    letter-spacing: -.02em;
}
.legal__body h3 {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin: 20px 0 6px;
}
.legal__body p {
    margin: 0 0 12px;
}
.legal__body strong {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}
.legal__body em {
    color: rgba(255,255,255,0.7);
    font-style: italic;
}
.legal__body a {
    color: rgba(139,92,246,0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal__body a:hover {
    color: rgba(167,139,250,1);
}
.legal__body hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 24px 0;
}
.legal__body ul,
.legal__body ol {
    padding-left: 22px;
    margin: 0 0 12px;
}
.legal__body li {
    margin-bottom: 4px;
}

/* ============================================================
   NicoraX 2.5 — Design Update: Split Hero + Category Bar
   ============================================================ */

/* === HERO VISUAL (right column floating cards) === */
.hero__visual {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__float-cards {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero__float-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 64px rgba(0,0,0,0.55);
    background: var(--color-surface);
    transition: var(--transition);
}
.hero__float-card:nth-child(1) {
    width: 52%;
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    animation: hf1 5s ease-in-out infinite alternate;
    z-index: 3;
}
.hero__float-card:nth-child(2) {
    width: 56%;
    top: 15%;
    right: 0;
    transform: rotate(2.5deg);
    animation: hf2 6s ease-in-out infinite alternate;
    z-index: 4;
}
.hero__float-card:nth-child(3) {
    width: 48%;
    bottom: 10%;
    left: 5%;
    transform: rotate(1.5deg);
    animation: hf3 7s ease-in-out infinite alternate;
    z-index: 2;
}
.hero__float-card:nth-child(4) {
    width: 44%;
    bottom: 0;
    right: 2%;
    transform: rotate(-2deg);
    animation: hf4 4.5s ease-in-out infinite alternate;
    z-index: 3;
}
@keyframes hf1 { 0% { transform: rotate(-3deg) translateY(0);    } 100% { transform: rotate(-3deg) translateY(-14px); } }
@keyframes hf2 { 0% { transform: rotate(2.5deg) translateY(-8px); } 100% { transform: rotate(2.5deg) translateY(8px);  } }
@keyframes hf3 { 0% { transform: rotate(1.5deg) translateY(0);   } 100% { transform: rotate(1.5deg) translateY(-10px);} }
@keyframes hf4 { 0% { transform: rotate(-2deg) translateY(-6px); } 100% { transform: rotate(-2deg) translateY(8px);  } }

.hero__float-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.hero__float-img--prompt { background: linear-gradient(135deg, #1a1030 0%, #2d1840 50%, #3d1020 100%); }
.hero__float-img--image  { background: linear-gradient(135deg, #0e1830 0%, #1a2040 50%, #101828 100%); }
.hero__float-img--music  { background: linear-gradient(135deg, #1a0d28 0%, #2d1545 50%, #180a20 100%); }
.hero__float-img--video  { background: linear-gradient(135deg, #0d1a20 0%, #102030 50%, #0a1520 100%); }
.hero__float-img-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    opacity: 0.25;
}
.hero__float-body {
    padding: 12px 14px;
    position: relative;
}
.hero__float-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-accent);
    background: rgba(255,45,45,0.1);
    border: 1px solid rgba(255,45,45,0.2);
    border-radius: 100px;
    padding: 3px 9px;
    margin-bottom: 6px;
}
.hero__float-text {
    font-size: 12px;
    color: var(--color-muted);
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* === CATEGORY BAR === */
.cat-bar {
    position: sticky;
    top: 68px;
    z-index: 900;
    background: rgba(12,10,22,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}
.cat-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.cat-bar__inner::-webkit-scrollbar { display: none; }
.cat-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}
.cat-bar__link:hover { color: var(--color-white); }
.cat-bar__link--active {
    color: var(--color-white);
    border-bottom-color: var(--color-accent);
}
.cat-bar__icon { opacity: 0.7; font-style: normal; }

/* === RESPONSIVE: Hero Split === */
@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        min-height: auto;
        gap: 40px;
    }
    .hero__content { text-align: center; }
    .hero__actions { justify-content: center; }
    .hero__stats   { justify-content: center; }
    .hero__badge   { margin-left: auto; margin-right: auto; }
    .hero__visual  { height: 340px; }
}
@media (max-width: 600px) {
    .hero__visual { display: none; }
    .cat-bar { display: none; }
}

/* === GALLERY LABEL BUTTONS === */
.gallery-labels {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 10px 0 4px;
}
.gallery-label-btn {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: var(--color-surface2);
    border: 1px solid var(--color-border);
    color: var(--color-muted);
    cursor: pointer;
    transition: var(--transition);
}
.gallery-label-btn:hover {
    color: var(--color-text);
    border-color: rgba(255,255,255,0.18);
}
.gallery-label-btn--active {
    background: var(--color-accent-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 12px rgba(255,45,45,0.28);
}

/* === DETAIL TAB NAV (Info / Prompt) === */
.dtab-nav {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    background: var(--color-surface2);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 4px;
}
.dtab-btn {
    flex: 1;
    padding: 9px 16px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.2px;
}
.dtab-btn:hover { color: var(--color-text); }
.dtab-btn--active {
    background: var(--color-surface);
    color: var(--color-text);
    box-shadow: 0 1px 6px rgba(0,0,0,0.45);
}

/* === PROMPT INLINE (in Prompt Tab) === */
.prompt-inline {
    background: var(--color-surface2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.prompt-inline__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
}
.prompt-inline__text {
    padding: 16px;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.prompt-inline__footer {
    padding: 12px 16px;
    border-top: 1px solid var(--color-border);
}

/* === PER-IMAGE PROMPT CARDS (multi-image upload) === */
.per-image-prompts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.per-image-prompt-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--color-surface2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 14px;
    transition: var(--transition);
}
.per-image-prompt-card--primary {
    border-color: rgba(255,45,45,0.3);
    background: rgba(255,45,45,0.04);
}
.per-image-prompt-card__thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
}
.per-image-prompt-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.per-image-prompt-card__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-muted);
}
.per-image-prompt-card--primary .per-image-prompt-card__label {
    color: var(--color-accent);
}
.per-image-prompt-card__textarea {
    width: 100%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.6;
    padding: 10px 12px;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
}
.per-image-prompt-card__textarea:focus {
    border-color: rgba(255,45,45,0.45);
}
.per-image-prompt-card__model {
    width: 100%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 12px;
    padding: 7px 12px;
    outline: none;
    transition: border-color 0.2s;
}
.per-image-prompt-card__model:focus {
    border-color: rgba(255,45,45,0.45);
}

/* ============================================================
   PREMIUM CARDS — Homepage Featured Section
   ============================================================ */

/* Live-Filter chips bar */
.pf-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.pf-bar__search {
    flex: 1;
    min-width: 200px;
    max-width: 320px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    padding: 9px 18px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.pf-bar__search:focus {
    border-color: rgba(255,45,45,0.5);
    box-shadow: 0 0 0 3px rgba(255,45,45,0.1);
}
.pf-bar__search::placeholder { color: rgba(255,255,255,0.3); }
.pf-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .18s;
    user-select: none;
    white-space: nowrap;
}
.pf-chip:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}
.pf-chip.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

/* Premium card grid */
.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) { .pf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pf-grid { grid-template-columns: 1fr; } }

/* Card itself */
.pc {
    background: var(--color-surface);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s cubic-bezier(.22,.68,0,1.2),
                box-shadow .3s ease,
                border-color .25s;
}
.pc:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,45,45,0.12);
    border-color: rgba(255,45,45,0.15);
}

/* Thumbnail link wrapper */
.pc__thumb-link {
    display: block;
    text-decoration: none;
    outline: none;
}

/* Thumbnail */
.pc__thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    aspect-ratio: 16/9;
    background: var(--color-surface2);
    flex-shrink: 0;
}
.pc__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.22,.68,0,1.2);
}
.pc:hover .pc__thumb-img { transform: scale(1.06); }
.pc__thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    opacity: 0.18;
}
/* Media overlay icon (video/music) */
.pc__media-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.pc__media-icon-inner {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: transform .25s, background .25s;
}
.pc:hover .pc__media-icon-inner {
    transform: scale(1.12);
    background: rgba(224,32,32,0.6);
}
/* Type badge on thumb */
.pc__type-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}
/* Gallery count badge */
.pc__gallery-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg,#ff2d2d,#c0007a);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    letter-spacing: .03em;
    box-shadow: 0 2px 8px rgba(255,45,45,0.35);
}

/* Body */
.pc__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 0;
}
.pc__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--color-accent);
}
.pc__meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.pc__title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--color-white);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}
.pc__title:hover { color: rgba(255,255,255,0.8); }
.pc__desc {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}
.pc__author {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}
.pc__author strong { color: rgba(255,255,255,0.6); font-weight: 500; }

/* Copy / CTA button */
.pc__footer {
    padding: 0 20px 20px;
    margin-top: auto;
}
.pc__copy-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s, transform .15s;
    font-family: var(--font-sans);
}
.pc__copy-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    transform: scale(1.01);
}
.pc__copy-btn.is-copied {
    background: rgba(16,185,129,0.15);
    border-color: rgba(16,185,129,0.5);
    color: var(--color-emerald);
}
.pc__view-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, color .2s, transform .15s;
}
.pc__view-btn:hover {
    background: rgba(255,45,45,0.1);
    border-color: rgba(255,45,45,0.3);
    color: #fff;
    transform: scale(1.01);
}
.pc--hidden { display: none !important; }

/* ══════════════════════════════════════════════════════════════
   CARD COPY BUTTON — floating pill, reveals on card hover
   ══════════════════════════════════════════════════════════════ */
.card__copy-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 40px;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease,
                background .15s, border-color .15s, color .15s;
    font-family: var(--font-sans);
    letter-spacing: .01em;
    white-space: nowrap;
    pointer-events: none; /* only interactive when hovered */
}
.card:hover .card__copy-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.card__copy-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.28);
}
.card__copy-btn.is-copied {
    background: rgba(16,185,129,0.18);
    border-color: rgba(16,185,129,0.55);
    color: var(--color-emerald);
}

/* Image card: position copy button above body text */
.card--image .card__copy-btn { bottom: 58px; }

/* ══════════════════════════════════════════════════════════════
   IMAGE CARD — improved preview
   ══════════════════════════════════════════════════════════════ */
/* Rounded corners match premium cards */
.card--image { border-radius: var(--radius-lg); }

/* Smoother gradient reveal on hover */
.card--image .card__media::after {
    transition: opacity .35s ease, background .35s ease;
}
.card--image:hover .card__media::after {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.65) 35%,
        rgba(0,0,0,0.1)  70%,
        transparent 100%
    );
}
/* Reveal description on image cards on hover */
.card--image:hover .card__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    margin-top: 4px;
}
/* Slightly taller on desktop for more image area */
@media (min-width: 769px) {
    .card--image { aspect-ratio: 2/3; }
}

/* ══════════════════════════════════════════════════════════════
   HERO MOSAIC (right-side split visual)
   ══════════════════════════════════════════════════════════════ */
.hero__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    position: relative;
    padding: 10px;
}
/* Ambient glow behind mosaic */
.hero__mosaic::before {
    content: '';
    position: absolute;
    inset: -80px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255,45,45,0.09) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}
.hero__mosaic-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--color-surface);
    aspect-ratio: 3/4;
    z-index: 1;
    transition: transform .38s cubic-bezier(.22,.68,0,1.2),
                border-color .28s, box-shadow .35s;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
/* Stagger: even cards shifted down for depth */
.hero__mosaic-card:nth-child(even) { margin-top: 28px; }
.hero__mosaic-card:hover {
    transform: translateY(-6px) scale(1.025);
    border-color: rgba(255,45,45,0.22);
    box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,45,45,0.1);
}
.hero__mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.22,.68,0,1.2);
}
.hero__mosaic-card:hover .hero__mosaic-img { transform: scale(1.07); }
.hero__mosaic-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    opacity: 0.12;
}
.hero__mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 12px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hero__mosaic-type {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--color-accent);
    background: rgba(255,45,45,0.12);
    border: 1px solid rgba(255,45,45,0.25);
    border-radius: 20px;
    padding: 2px 8px;
    align-self: flex-start;
}
.hero__mosaic-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    line-height: 1.4;
}
/* Responsive: hide mosaic & restore single-col on mobile */
@media (max-width: 900px) {
    .hero__visual { display: none; }
    .hero__inner { grid-template-columns: 1fr; min-height: auto; padding: 80px 24px 60px; }
    .hero__content { text-align: center; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__badge { margin: 0 auto 24px; }
}

/* ══════════════════════════════════════════════════════════════
   COPY BUTTON — always visible (override hover-only state)
   ══════════════════════════════════════════════════════════════ */
.card__copy-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}
