/* ============================================
   YU.IS Domain Showcase — CYBERPUNK EDITION
   ============================================ */

/* === CSS Variables === */
:root {
    --bg-primary: #030308;
    --bg-secondary: #08081a;
    --bg-card: rgba(8, 8, 26, 0.85);
    --bg-card-hover: rgba(15, 15, 40, 0.92);
    --text-primary: #e0e0f0;
    --text-secondary: #7a7a9e;
    --text-muted: #44446a;
    --neon-cyan: #00f0ff;
    --neon-pink: #ff2d7b;
    --neon-purple: #b14eff;
    --neon-yellow: #ffe03d;
    --accent-gradient: linear-gradient(135deg, #b14eff, #00f0ff);
    --accent-gradient-h: linear-gradient(90deg, #ff2d7b, #b14eff, #00f0ff);
    --premium-gold: #ffd700;
    --success: #00ff88;
    --warning: #ffe03d;
    --danger: #ff3355;
    --border: rgba(0, 240, 255, 0.06);
    --border-hover: rgba(0, 240, 255, 0.18);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow-neon: 0 0 20px rgba(0, 240, 255, 0.08);
    --shadow-neon-strong: 0 0 40px rgba(0, 240, 255, 0.15), 0 0 80px rgba(177, 78, 255, 0.08);
    --font-display: 'Orbitron', sans-serif;
    --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Noise overlay — full page */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: noiseShift 0.1s steps(5) infinite;
}

/* CRT scanline simulation — subtle horizontal lines */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.015) 2px,
            rgba(0, 0, 0, 0.015) 4px);
}

@keyframes noiseShift {
    0% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(-2px, 1px);
    }

    66% {
        transform: translate(1px, -2px);
    }

    100% {
        transform: translate(2px, 2px);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

/* === Particles Canvas === */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* === Container === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(3, 3, 8, 0.7);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(0, 240, 255, 0.06);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(3, 3, 8, 0.92);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(0, 240, 255, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
}

.logo-icon {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.logo-text {
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    position: relative;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.nav-link:hover {
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.05);
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.nav-cta {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple)) !important;
    color: white !important;
    font-weight: 700;
    border: none;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.nav-cta:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 4px 25px rgba(255, 45, 123, 0.35);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px rgba(0, 240, 255, 0.4);
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
    overflow: hidden;
}

/* Animated cyberpunk grid — INTENSE */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 25%, transparent 70%);
    animation: gridPulse 3s ease-in-out infinite;
}

.hero-grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 45, 123, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 45, 123, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 30px 30px;
}

.hero-grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(3, 3, 8, 0.4) 40%, rgba(3, 3, 8, 0.8) 100%);
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.5;
        background-size: 60px 60px;
    }

    50% {
        opacity: 1;
        background-size: 62px 62px;
    }
}

/* Scan lines — INTENSE */
.hero-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 2%, var(--neon-cyan) 20%, #fff 50%, var(--neon-pink) 80%, transparent 98%);
    opacity: 0.7;
    animation: scanLine 5s linear infinite;
    box-shadow: 0 0 30px var(--neon-cyan), 0 0 60px rgba(0, 240, 255, 0.5), 0 0 120px rgba(0, 240, 255, 0.15);
}

.hero-scan-line-2 {
    height: 2px;
    background: linear-gradient(90deg, transparent 10%, var(--neon-pink) 40%, #fff 55%, var(--neon-purple) 70%, transparent 90%);
    opacity: 0.5;
    animation: scanLine 8s linear infinite reverse;
    animation-delay: -3s;
    box-shadow: 0 0 20px var(--neon-pink), 0 0 50px rgba(255, 45, 123, 0.3);
}

@keyframes scanLine {
    0% {
        top: -3px;
    }

    100% {
        top: 100%;
    }
}

/* Glow orbs */
.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 800px;
    height: 800px;
    top: -20%;
    left: -15%;
    background: radial-gradient(circle, rgba(177, 78, 255, 0.35) 0%, rgba(177, 78, 255, 0.1) 40%, transparent 70%);
    animation: orbFloat1 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 700px;
    height: 700px;
    bottom: -20%;
    right: -15%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.3) 0%, rgba(0, 240, 255, 0.08) 40%, transparent 70%);
    animation: orbFloat2 10s ease-in-out infinite;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255, 45, 123, 0.12) 0%, transparent 70%);
    animation: orbFloat3 14s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, 30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 50px) scale(0.95);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-40px, -30px) scale(1.15);
    }

    66% {
        transform: translate(30px, -20px) scale(0.9);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-50%) scale(1.3);
        opacity: 1;
    }
}

/* Hex ring */
.hero-hex-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 240, 255, 0.04);
    border-radius: 50%;
    animation: hexRingSpin 30s linear infinite;
    pointer-events: none;
}

.hero-hex-ring::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(177, 78, 255, 0.04);
    border-radius: 50%;
    animation: hexRingSpin 25s linear infinite reverse;
}

.hero-hex-ring::after {
    content: '';
    position: absolute;
    inset: 60px;
    border: 1px dashed rgba(255, 45, 123, 0.04);
    border-radius: 50%;
    animation: hexRingSpin 20s linear infinite;
}

@keyframes hexRingSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Data streams */
.hero-data-stream {
    position: absolute;
    width: 1px;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-data-stream-1 {
    left: 15%;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 240, 255, 0.08) 20%,
            transparent 25%,
            rgba(177, 78, 255, 0.06) 50%,
            transparent 55%,
            rgba(0, 240, 255, 0.04) 80%,
            transparent 100%);
    animation: dataFlow 6s linear infinite;
}

.hero-data-stream-2 {
    right: 15%;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(255, 45, 123, 0.06) 30%,
            transparent 35%,
            rgba(0, 240, 255, 0.05) 60%,
            transparent 65%,
            rgba(177, 78, 255, 0.04) 90%,
            transparent 100%);
    animation: dataFlow 8s linear infinite reverse;
    animation-delay: -3s;
}

@keyframes dataFlow {
    0% {
        background-position: 0 -100vh;
    }

    100% {
        background-position: 0 100vh;
    }
}

.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.12);
    border-radius: 2px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 0.2em;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px rgba(0, 240, 255, 0.3);
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px rgba(0, 240, 255, 0.3);
    }

    50% {
        opacity: 0.3;
        box-shadow: 0 0 4px var(--neon-cyan);
    }
}

/* Hero Title — GLITCH Effect */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
    position: relative;
}

.hero-title-line {
    display: block;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(224, 224, 240, 0.15), 0 0 60px rgba(0, 240, 255, 0.05);
    animation: glitchFlicker 4s ease-in-out infinite;
}

@keyframes glitchFlicker {

    0%,
    92%,
    100% {
        opacity: 1;
        transform: none;
    }

    93% {
        opacity: 0.8;
        transform: translate(-2px, 1px) skewX(-0.5deg);
    }

    94% {
        opacity: 1;
        transform: translate(1px, -1px) skewX(0.5deg);
    }

    95% {
        opacity: 0.9;
        transform: translate(-1px, 0) skewX(-0.3deg);
    }

    96% {
        opacity: 1;
        transform: none;
    }
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan), var(--neon-pink));
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonGradient 4s linear infinite;
    filter: drop-shadow(0 0 20px rgba(177, 78, 255, 0.5)) drop-shadow(0 0 40px rgba(0, 240, 255, 0.2));
    position: relative;
}

/* Glitch pseudo-layers */
.hero-title-gradient::before,
.hero-title-gradient::after {
    content: 'PERFECT DOMAIN';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-gradient::before {
    animation: glitchLayer1 3s ease-in-out infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    opacity: 0.8;
}

.hero-title-gradient::after {
    animation: glitchLayer2 3s ease-in-out infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    opacity: 0.8;
}

@keyframes glitchLayer1 {

    0%,
    88%,
    100% {
        transform: none;
    }

    89% {
        transform: translate(4px, -1px);
    }

    90% {
        transform: translate(-3px, 1px);
    }

    91% {
        transform: translate(2px, 0);
    }

    92% {
        transform: none;
    }
}

@keyframes glitchLayer2 {

    0%,
    90%,
    100% {
        transform: none;
    }

    91% {
        transform: translate(-4px, 1px);
    }

    92% {
        transform: translate(3px, -1px);
    }

    93% {
        transform: translate(-2px, 0);
    }

    94% {
        transform: none;
    }
}

@keyframes neonGradient {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 2;
    letter-spacing: 0.06em;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.highlight-count {
    color: var(--neon-cyan);
    font-weight: 700;
    font-family: var(--font-mono);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.stat-item {
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, var(--neon-cyan), var(--neon-pink), transparent);
    opacity: 0.3;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.35));
}

.stat-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* CTA Button */
.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease 0.4s both;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 45, 123, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 45, 123, 0.4), 0 0 60px rgba(177, 78, 255, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 45, 123, 0.6);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.hero-cta:hover .cta-arrow {
    transform: translateX(6px);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: ctaSweep 4s ease-in-out infinite;
    transform: skewX(-20deg);
}

@keyframes ctaSweep {
    0% {
        left: -60%;
    }

    40% {
        left: 110%;
    }

    100% {
        left: 110%;
    }
}

/* ══════════════════════════════════════
   FILTER SECTION
   ══════════════════════════════════════ */
.filter-section {
    position: sticky;
    top: 64px;
    z-index: 50;
    background: rgba(3, 3, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.search-input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    background: rgba(8, 8, 26, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    transition: all 0.25s ease;
    outline: none;
}

.search-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.08), 0 0 20px rgba(0, 240, 255, 0.06);
}

.search-input::placeholder {
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.filter-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 32px 10px 12px;
    background: rgba(8, 8, 26, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    cursor: pointer;
    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 24 24' fill='none' stroke='%2300f0ff' 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;
    transition: all 0.25s ease;
}

.filter-select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.08);
}

.filter-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.filter-result {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.result-count {
    color: var(--neon-cyan);
    font-weight: 700;
    font-family: var(--font-mono);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

/* ══════════════════════════════════════
   DOMAIN SECTIONS
   ══════════════════════════════════════ */
.domain-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.premium-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(255, 215, 0, 0.015) 50%, var(--bg-primary) 100%);
}

.all-section {
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 2px;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
    margin-bottom: 16px;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.25);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(224, 224, 240, 0.06);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ══════════════════════════════════════
   DOMAIN GRID
   ══════════════════════════════════════ */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

/* ══════════════════════════════════════
   DOMAIN CARD — Cyberpunk
   ══════════════════════════════════════ */
.domain-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    overflow: hidden;
    backdrop-filter: blur(12px);
    animation: cardFadeIn 0.5s ease both;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Top neon line */
.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient-h);
    opacity: 0.15;
    transition: all 0.4s ease;
}

/* Corner decoration — all four corners */
.domain-card::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    border-right: 1px solid rgba(0, 240, 255, 0.15);
    opacity: 0;
    transition: all 0.4s ease;
}

.domain-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-5px) scale(1.01);
    box-shadow:
        var(--shadow-neon),
        0 0 30px rgba(0, 240, 255, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(0, 240, 255, 0.01);
    animation: cardNeonFlicker 0.15s ease;
}

@keyframes cardNeonFlicker {
    0% {
        box-shadow: var(--shadow-neon), 0 0 30px rgba(0, 240, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    25% {
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.15), 0 0 80px rgba(0, 240, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    50% {
        box-shadow: var(--shadow-neon), 0 0 20px rgba(0, 240, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    100% {
        box-shadow: var(--shadow-neon), 0 0 30px rgba(0, 240, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.5);
    }
}

.domain-card:hover::before {
    opacity: 0.85;
    height: 2px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.domain-card:hover::after {
    opacity: 1;
    width: 18px;
    height: 18px;
}

/* Premium card */
.domain-card.premium {
    border-color: rgba(255, 215, 0, 0.08);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 215, 0, 0.02) 100%);
}

.domain-card.premium::before {
    background: linear-gradient(90deg, #ffd700, #ff8c00, #ffd700);
    opacity: 0.4;
}

.domain-card.premium::after {
    border-color: rgba(255, 215, 0, 0.15);
}

.domain-card.premium:hover {
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.domain-card.premium:hover::before {
    opacity: 0.8;
}

.domain-card.premium:hover::after {
    opacity: 1;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.domain-name {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    word-break: break-all;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.15);
}

.domain-emoji {
    font-size: 1.25rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.2));
    transition: transform 0.3s ease;
}

.domain-card:hover .domain-emoji {
    transform: scale(1.2);
}

.premium .domain-name {
    color: var(--premium-gold);
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 2px;
    font-family: var(--font-display);
    font-size: 0.5rem;
    font-weight: 800;
    color: var(--premium-gold);
    letter-spacing: 0.1em;
    white-space: nowrap;
    flex-shrink: 0;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.2);
}

/* Card Description */
.domain-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Meta */
.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.meta-item .meta-icon {
    font-size: 0.75rem;
}

.tld-badge {
    padding: 2px 8px;
    background: rgba(177, 78, 255, 0.08);
    border: 1px solid rgba(177, 78, 255, 0.12);
    border-radius: 2px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--neon-purple);
}

.days-badge {
    padding: 2px 8px;
    border-radius: 2px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.days-safe {
    background: rgba(0, 255, 136, 0.06);
    border-color: rgba(0, 255, 136, 0.1);
    color: var(--success);
}

.days-warning {
    background: rgba(255, 224, 61, 0.06);
    border-color: rgba(255, 224, 61, 0.1);
    color: var(--warning);
}

.days-danger {
    background: rgba(255, 51, 85, 0.06);
    border-color: rgba(255, 51, 85, 0.1);
    color: var(--danger);
}

.days-expired {
    background: rgba(255, 51, 85, 0.1);
    border-color: rgba(255, 51, 85, 0.15);
    color: var(--danger);
}

.registrar-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ══════════════════════════════════════
   LOAD MORE
   ══════════════════════════════════════ */
/* ══════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    background: rgba(8, 8, 26, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 2px;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.page-btn:hover:not(:disabled):not(.active) {
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.04);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.08);
    transform: translateY(-1px);
}

.page-btn.active {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15), inset 0 0 15px rgba(0, 240, 255, 0.03);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.page-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.page-prev,
.page-next {
    font-size: 1.1rem;
    font-family: var(--font-sans);
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 38px;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.page-info {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: 12px;
    letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════ */
.contact-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-card {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.contact-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(177, 78, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.contact-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
}

.contact-methods {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(0, 240, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    min-width: 220px;
}

.contact-method:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.08);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-label {
    font-family: var(--font-display);
    font-size: 0.55rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.contact-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
    position: relative;
    z-index: 1;
    padding: 32px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-contact a {
    color: var(--text-secondary);
    font-size: 0.82rem;
    transition: all 0.2s ease;
}

.footer-contact a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.domain-card {
    animation: fadeInUp 0.4s ease both;
}

/* === No Results === */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.no-results-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(3, 3, 8, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 16px;
        gap: 4px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: 90vh;
        padding: 100px 16px 60px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-divider {
        height: 30px;
    }

    .filter-section {
        position: relative;
        top: 0;
    }

    .filter-bar {
        flex-direction: column;
        gap: 12px;
    }

    .search-box {
        min-width: 100%;
    }

    .filter-group {
        width: 100%;
        flex-wrap: wrap;
    }

    .filter-select {
        flex: 1;
        min-width: 120px;
    }

    .domain-grid {
        grid-template-columns: 1fr;
    }

    .domain-section {
        padding: 40px 0;
    }

    .contact-card {
        padding: 32px 20px;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}

/* ══════════════════════════════════════
   SCROLLBAR — Cyberpunk
   ══════════════════════════════════════ */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-cyan));
    box-shadow: 0 0 8px var(--neon-cyan);
}

/* ══════════════════════════════════════
   CYBERPUNK ENHANCED EFFECTS
   ══════════════════════════════════════ */

/* Section title neon breathing */
.section-title {
    animation: neonBreathe 4s ease-in-out infinite;
}

@keyframes neonBreathe {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(224, 224, 240, 0.04);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.15), 0 0 40px rgba(0, 240, 255, 0.05);
    }
}

/* Premium section glow pulse */
.premium-section {
    animation: premiumGlow 6s ease-in-out infinite;
}

@keyframes premiumGlow {

    0%,
    100% {
        background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(255, 215, 0, 0.015) 50%, var(--bg-primary) 100%);
    }

    50% {
        background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(255, 215, 0, 0.035) 50%, var(--bg-primary) 100%);
    }
}

/* Domain name hover glitch micro-effect */
.domain-card:hover .domain-name {
    animation: textGlitch 0.3s ease;
}

@keyframes textGlitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-1px, 1px);
    }

    40% {
        transform: translate(1px, -1px);
    }

    60% {
        transform: translate(-1px, 0);
    }

    80% {
        transform: translate(1px, 1px);
    }

    100% {
        transform: translate(0);
    }
}

/* Pagination active page pulse */
.page-btn.active {
    animation: pageActivePulse 2s ease-in-out infinite;
}

@keyframes pageActivePulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.15), inset 0 0 15px rgba(0, 240, 255, 0.03);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.25), 0 0 60px rgba(0, 240, 255, 0.08), inset 0 0 20px rgba(0, 240, 255, 0.05);
    }
}

/* Hero badge flicker */
.hero-badge {
    animation: fadeInUp 0.6s ease, badgeFlicker 8s ease-in-out infinite 1s;
}

@keyframes badgeFlicker {

    0%,
    94%,
    96%,
    98%,
    100% {
        opacity: 1;
    }

    95% {
        opacity: 0.7;
    }

    97% {
        opacity: 0.85;
    }
}

/* Navbar neon underline on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    box-shadow: 0 0 6px var(--neon-cyan);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Filter select neon glow on focus */
.filter-select:focus {
    animation: filterGlow 0.5s ease;
}

@keyframes filterGlow {
    0% {
        box-shadow: 0 0 12px rgba(0, 240, 255, 0.08);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 240, 255, 0.2), 0 0 50px rgba(0, 240, 255, 0.05);
    }

    100% {
        box-shadow: 0 0 12px rgba(0, 240, 255, 0.08);
    }
}

/* Contact card cyber scan */
.contact-card {
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 240, 255, 0.03) 50%, transparent 60%);
    animation: contactScan 8s linear infinite;
}

@keyframes contactScan {
    0% {
        top: -100%;
    }

    100% {
        top: 200%;
    }
}

/* Hero CTA button pulse ring */
.hero-cta::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: var(--accent-gradient-h);
    z-index: -1;
    opacity: 0;
    animation: ctaPulseRing 3s ease-in-out infinite;
    filter: blur(8px);
}

@keyframes ctaPulseRing {

    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

/* TLD badge shimmer on hover */
.domain-card:hover .tld-badge {
    animation: badgeShimmer 0.6s ease;
}

@keyframes badgeShimmer {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.5);
    }

    100% {
        filter: brightness(1);
    }
}

/* Emoji pulse on card hover */
.domain-card:hover .domain-emoji {
    transform: scale(1.25);
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
}

/* Global neon flicker for page title */
.hero-title {
    animation: heroTitleFlicker 10s ease-in-out infinite;
}

@keyframes heroTitleFlicker {

    0%,
    89%,
    91%,
    93%,
    95%,
    100% {
        opacity: 1;
    }

    90% {
        opacity: 0.92;
        text-shadow: 0 0 30px rgba(0, 240, 255, 0.3), 2px 0 var(--neon-pink), -2px 0 var(--neon-cyan);
    }

    92% {
        opacity: 0.97;
    }

    94% {
        opacity: 0.88;
        text-shadow: 0 0 40px rgba(255, 45, 123, 0.3), -1px 0 var(--neon-cyan), 1px 0 var(--neon-pink);
    }
}