/* ═══════════════════════════════════════════
   HOLWATFLIX v2.1 — Premium Cinematic Platform
   Dark + Violet/Amber/Rose — Unique & Premium
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
    --bg-void: #06060a;
    --bg-deep: #0a0a12;
    --bg-surface: #10101c;
    --bg-card: #12122a;
    --bg-card-hover: #1c1c38;
    --bg-glass: rgba(12, 12, 24, 0.85);
    --accent-1: #7c3aed;
    --accent-2: #a855f7;
    --accent-3: #c084fc;
    --warm: #f59e0b;
    --warm-bright: #fbbf24;
    --rose: #f43f5e;
    --emerald: #10b981;
    --cyan: #06b6d4;
    --gradient-main: linear-gradient(135deg, #7c3aed, #f43f5e);
    --gradient-warm: linear-gradient(135deg, #f59e0b, #f43f5e);
    --gradient-cool: linear-gradient(135deg, #06b6d4, #7c3aed);
    --text-primary: #eeeef5;
    --text-secondary: rgba(238, 238, 245, 0.6);
    --text-muted: rgba(238, 238, 245, 0.3);
    --font-primary: 'Space Grotesk', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-void);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-1);
    border-radius: 10px;
}

/* ══════ AMBIENT ══════ */
.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.amb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.07;
}

.amb-orb:nth-child(1) {
    width: 700px;
    height: 700px;
    background: var(--accent-1);
    top: -200px;
    right: -100px;
    animation: orbFloat 20s ease-in-out infinite;
}

.amb-orb:nth-child(2) {
    width: 500px;
    height: 500px;
    background: var(--rose);
    bottom: -200px;
    left: -100px;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.amb-orb:nth-child(3) {
    width: 400px;
    height: 400px;
    background: var(--warm);
    top: 50%;
    left: 50%;
    animation: orbFloat 18s ease-in-out infinite 3s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(50px, -40px) scale(1.15)
    }
}

/* ══════ HEADER ══════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    background: rgba(6, 6, 10, 0.5);
    backdrop-filter: blur(40px) saturate(1.4);
    -webkit-backdrop-filter: blur(40px) saturate(1.4);
    border-bottom: 1px solid rgba(124, 58, 237, 0.06);
    transition: all 0.4s var(--ease-out);
}

.header.scrolled {
    background: rgba(6, 6, 10, 0.92);
    border-bottom-color: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    transition: transform 0.3s var(--ease-out);
}

.logo:hover {
    transform: scale(1.04);
}

.logo-main {
    color: #fff;
}

.logo-accent {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 7px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.nav-link:hover {
    color: #fff;
    background: rgba(124, 58, 237, 0.1);
}

.nav-link.active {
    color: #fff;
    background: rgba(124, 58, 237, 0.12);
    box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.2);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Search */
.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.4s var(--ease-out);
    width: 220px;
}

.search-box:focus-within {
    border-color: var(--accent-2);
    background: rgba(124, 58, 237, 0.1);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.12);
    width: 300px;
}

.search-box svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.search-box input {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
    width: 100%;
    font-family: inherit;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

/* Live Badge */
.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--emerald);
    letter-spacing: 1px;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 8px var(--emerald);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.7)
    }
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.08);
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: rgba(124, 58, 237, 0.15);
}

.menu-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
}

/* ══════ HERO ══════ */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding: 100px 4% 60px;
    overflow: hidden;
}

/* Dual background image layers for crossfade */
.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.hero-bg-img.active {
    opacity: 1;
}

/* Cinematic overlay on top of the poster */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6, 6, 10, 0.92) 0%, rgba(6, 6, 10, 0.6) 40%, rgba(6, 6, 10, 0.2) 70%, transparent 100%),
        linear-gradient(180deg, rgba(6, 6, 10, 0.3) 0%, transparent 40%, rgba(6, 6, 10, 0.8) 85%, var(--bg-void) 100%),
        linear-gradient(0deg, var(--bg-void) 0%, transparent 15%);
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.hero-content>* {
    opacity: 0;
    transform: translateY(25px);
    animation: revealUp 0.7s var(--ease-out) forwards;
}

.hero-content>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-content>*:nth-child(2) {
    animation-delay: 0.22s;
}

.hero-content>*:nth-child(3) {
    animation-delay: 0.34s;
}

.hero-content>*:nth-child(4) {
    animation-delay: 0.46s;
}

.hero-content>*:nth-child(5) {
    animation-delay: 0.58s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide indicators */
.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
    width: 28px;
    border-radius: 100px;
    background: var(--accent-2);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
}

/* Progress bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 10;
}

.hero-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-main);
    border-radius: 0 3px 3px 0;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-3);
    margin-bottom: 1.2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.hero-title .gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.hero-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.chip {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.73rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.chip:hover {
    border-color: rgba(124, 58, 237, 0.2);
    color: #fff;
}

.chip.imdb {
    color: var(--warm);
    border-color: rgba(245, 158, 11, 0.2);
    background: rgba(245, 158, 11, 0.05);
}

.chip.quality {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.chip.dub {
    color: var(--emerald);
    border-color: rgba(16, 185, 129, 0.15);
    background: rgba(16, 185, 129, 0.05);
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--accent-2);
    color: #fff;
    background: rgba(124, 58, 237, 0.06);
}

/* ══════ STATS ══════ */
.stats-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 2rem 4%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 0;
}

.stat-item .stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item .stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ══════ FILTER BAR ══════ */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 4%;
    flex-wrap: wrap;
    position: sticky;
    top: 68px;
    z-index: 100;
    background: rgba(6, 6, 10, 0.88);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-group label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.filter-select {
    appearance: none;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.1);
    color: var(--text-primary);
    padding: 7px 30px 7px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-2);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.1);
}

.filter-select option {
    background: var(--bg-deep);
    color: var(--text-primary);
}

.filter-pill {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.filter-pill:hover {
    border-color: var(--accent-1);
    color: #fff;
}

.filter-pill.active {
    background: var(--accent-1);
    border-color: var(--accent-1);
    color: #fff;
    box-shadow: 0 4px 18px rgba(124, 58, 237, 0.3);
}

.filter-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 6px;
}

.filter-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-left: auto;
    font-family: var(--font-mono);
}

.filter-count span {
    color: var(--accent-3);
    font-weight: 600;
}

/* ══════ CONTENT ══════ */
.content-zone {
    padding: 2rem 4% 4rem;
    position: relative;
    z-index: 1;
}

/* Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
}

/* Card */
.card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.08);
}

.card-img {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out), filter 0.4s;
}

.card:hover .card-img img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(6, 6, 10, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card:hover .card-overlay {
    opacity: 1;
}

.card-play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.4s var(--ease-elastic);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.card-play svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    margin-left: 2px;
}

.card:hover .card-play {
    opacity: 1;
    transform: scale(1);
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 3;
    letter-spacing: 0.5px;
}

.card-badge.new {
    background: var(--accent-1);
    color: #fff;
}

.card-badge.hot {
    background: var(--rose);
    color: #fff;
}

.card-badge.top {
    background: var(--warm);
    color: #000;
}

.card-quality {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 3;
    backdrop-filter: blur(4px);
}

.card-info {
    padding: 0.8rem;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.card-meta .rating {
    color: var(--warm);
    font-weight: 700;
}

.card-tags {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.card-tag {
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.6rem;
    background: rgba(124, 58, 237, 0.06);
    color: var(--accent-3);
    border: 1px solid rgba(124, 58, 237, 0.08);
}

/* ══════ FOOTER ══════ */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3.5rem 4% 1.5rem;
    margin-top: 3rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand .footer-logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-out);
}

.footer-socials a:hover {
    background: var(--accent-1);
    color: #fff;
    border-color: var(--accent-1);
    transform: translateY(-2px);
}

.footer-socials a svg {
    width: 16px;
    height: 16px;
}

.footer-col h5 {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--accent-3);
    padding-left: 4px;
}

.footer-end {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ══════ RESPONSIVE — TABLET ══════ */
@media (max-width:1024px) {
    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
        gap: 16px;
    }

    .filter-bar {
        gap: 8px;
    }
}

/* ══════ RESPONSIVE — MOBILE ══════ */
@media (max-width:768px) {
    .header {
        padding: 0 3%;
        height: 60px;
    }

    .header-left {
        gap: 12px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .live-badge {
        display: none;
    }

    /* Mobile Search */
    .search-box {
        width: 40px;
        padding: 8px;
        background: transparent;
        border: none;
        justify-content: center;
    }

    .search-box input {
        display: none;
    }

    .search-box:focus-within {
        width: 100%;
        position: fixed;
        left: 0;
        right: 0;
        top: 60px;
        background: var(--bg-deep);
        padding: 1rem 3%;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid rgba(124, 58, 237, 0.15);
        z-index: 999;
    }

    .search-box:focus-within input {
        display: block;
    }

    /* Hero */
    .hero {
        min-height: 50vh;
        padding: 80px 4% 45px;
    }

    .hero-indicators {
        bottom: 14px;
        gap: 6px;
    }

    .hero-dot {
        width: 6px;
        height: 6px;
    }

    .hero-dot.active {
        width: 22px;
    }

    .hero-title {
        font-size: 1.8rem !important;
        letter-spacing: -1px;
    }

    .hero-desc {
        font-size: 0.88rem;
        max-width: 100%;
    }

    .hero-chips {
        gap: 6px;
    }

    .chip {
        padding: 4px 10px;
        font-size: 0.68rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* Stats */
    .stats-strip {
        gap: 16px;
        flex-wrap: wrap;
        padding: 1.5rem 3%;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .stat-item .stat-num {
        font-size: 1.6rem;
    }

    .stat-item .stat-label {
        font-size: 0.7rem;
    }

    /* Filter Bar */
    .filter-bar {
        padding: 0.7rem 3%;
        top: 60px;
        gap: 6px;
        overflow-x: auto;
        flex-wrap: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .filter-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-group label {
        display: none;
    }

    .filter-divider {
        display: none;
    }

    .filter-count {
        display: none;
    }

    .filter-select {
        padding: 6px 26px 6px 10px;
        font-size: 0.75rem;
    }

    .filter-pill {
        padding: 5px 12px;
        font-size: 0.72rem;
    }

    /* Content */
    .content-zone {
        padding: 1rem 3% 3rem;
    }

    .content-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .card:hover {
        transform: none;
        box-shadow: none;
    }

    .card-overlay {
        opacity: 0 !important;
    }

    .card-info {
        padding: 0.6rem;
    }

    .card-title {
        font-size: 0.75rem;
    }

    .card-meta {
        font-size: 0.62rem;
        gap: 5px;
    }

    .card-tags {
        display: none;
    }

    .card-badge {
        font-size: 0.55rem;
        padding: 2px 7px;
        top: 6px;
        left: 6px;
    }

    .card-quality {
        font-size: 0.5rem;
        padding: 1px 5px;
        top: 6px;
        right: 6px;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 3% 1.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-col a:hover {
        padding-left: 0;
    }
}

/* ══════ RESPONSIVE — SMALL PHONE ══════ */
@media (max-width:480px) {
    .logo {
        font-size: 1.3rem;
    }

    .hero {
        padding: 80px 4% 30px;
    }

    .hero-title {
        font-size: 1.5rem !important;
    }

    .hero-label {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .hero-desc {
        font-size: 0.82rem;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stats-strip {
        gap: 10px;
        padding: 1.2rem 3%;
    }

    .stat-item .stat-num {
        font-size: 1.3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}