        @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

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

        :root {
            --bg-primary: #edf2ee;
            --bg-secondary: #ebe7df;
            --bg-surface: #faf8f4;
            --bg-surface-2: #ede9e0;
            --bg-surface-3: #e4dfd4;
            --accent: #38a878;
            --accent-alt: #d4a017;
            --accent-pale: rgba(108, 43, 217, 0.08);
            --accent-glow: rgba(108, 43, 217, 0.14);
            --text-primary: #18120e;
            --text-secondary: #3a2f27;
            --text-muted: #7a6a5a;
            --text-light: #b0a090;
            --border: rgba(24, 18, 14, 0.1);
            --border-accent: rgba(108, 43, 217, 0.22);
            --border-hover: rgba(108, 43, 217, 0.45);
            --shadow-soft: 0 4px 20px rgba(24, 18, 14, 0.07);
            --shadow-medium: 0 8px 32px rgba(24, 18, 14, 0.11);
            --shadow-glow: 0 0 24px rgba(108, 43, 217, 0.12);
            --radius-sm: 4px;
            --radius: 10px;
            --radius-lg: 18px;
            --radius-xl: 30px;
            --ease: cubic-bezier(0.22, 1, 0.36, 1);
            --t: 0.18s;
            --font: 'Space Grotesk', -apple-system, system-ui, sans-serif;
            --font-mono: 'Space Mono', 'Courier New', monospace
        }

        html.dark {
            --bg-primary: #0d0b18;
            --bg-secondary: #110f20;
            --bg-surface: #17142a;
            --bg-surface-2: #1e1b32;
            --bg-surface-3: #252240;
            --accent: #17142a;
            --accent-alt: #f0c040;
            --accent-pale: rgba(155, 89, 247, 0.12);
            --accent-glow: rgba(155, 89, 247, 0.2);
            --text-primary: #f0ecff;
            --text-secondary: #b0a8d0;
            --text-muted: #6a6090;
            --text-light: #fff;
            --border: rgba(155, 89, 247, 0.12);
            --border-accent: rgba(155, 89, 247, 0.32);
            --border-hover: rgba(155, 89, 247, 0.55);
            --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.45);
            --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.6);
            --shadow-glow: 0 0 28px rgba(155, 89, 247, 0.2)
        }

        html.dark body {
            background-image: radial-gradient(ellipse 70% 50% at 20% 10%, rgba(155, 89, 247, 0.07) 0%, transparent 55%), radial-gradient(ellipse 60% 40% at 80% 90%, rgba(240, 192, 64, 0.04) 0%, transparent 50%)
        }

        html.dark .menu-wrapper::after {
            background: linear-gradient(to right, transparent, rgba(13, 11, 24, 0.95))
        }

        html.dark .input-sec {
            background: linear-gradient(to bottom, #0d0b18 75%, transparent)
        }

        html {
            -webkit-text-size-adjust: 100%;
            scroll-behavior: smooth
        }

        body {
            background: var(--bg-primary);
            font-family: var(--font);
            color: var(--text-secondary);
            line-height: 1.6;
            min-height: 100dvh;
            -webkit-font-smoothing: antialiased;
            padding: 0;
            margin: 0;
            background-image: radial-gradient(ellipse 70% 50% at 20% 10%, rgba(108, 43, 217, 0.05) 0%, transparent 55%), radial-gradient(ellipse 60% 40% at 80% 90%, rgba(212, 160, 23, 0.04) 0%, transparent 50%)
        }

        .container {
            max-width: 1080px;
            margin: 0 auto
        }

        .deco-dialog {
            background: var(--bg-primary)
        }

        h1 {
            font-family: var(--font-mono);
            font-size: clamp(1.6rem, 4vw, 2.6rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.0;
            color: var(--text-primary);
            margin-bottom: 0.2rem
        }

        h1 span {
            background: var(--accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        h2 {
            font-family: var(--font-mono);
            font-size: clamp(0.85rem, 2vw, 1rem);
            font-weight: 700;
            color: var(--text-muted);
            margin: 1.8rem 0 0.6rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem
        }

        h2::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            flex-shrink: 0
        }

        h3 {
            font-size: clamp(0.9rem, 2vw, 1.05rem);
            font-weight: 600;
            color: var(--text-primary);
            margin: 1rem 0 0.4rem
        }

        p {
            color: var(--text-secondary);
            margin-bottom: 0.75rem;
            line-height: 1.75;
            font-size: 0.95rem
        }

        ul,
        ol {
            padding-left: 1.4rem;
            margin: 0.3rem 0 0.65rem
        }

        li {
            color: var(--text-secondary);
            margin-bottom: 0.25rem;
            font-size: 0.95rem
        }

        header {
            background: var(--accent);
            border-bottom: 1px solid var(--border)
        }

        .brand {
            text-align: center;
            padding: 0.2rem;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .brand a {
            text-decoration: none;
        }

        .brand h3 {
            margin: 0;
            padding: 1rem 0;
            font-size: 1.3rem;
            color: var(--text-secondary);
        }

        .sub {
            font-family: var(--font-mono);
            font-size: clamp(0.68rem, 1.6vw, 0.78rem);
            color: var(--text-muted);
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 0.3rem 1rem;
            margin-bottom: 1rem;
            display: inline-block;
            font-weight: 400;
            letter-spacing: 0.06em
        }

        .sub i {
            background: var(--accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-style: normal;
            margin: 0 0.2rem
        }

        .step-box,
        .tip-box {
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            padding: clamp(0.9rem, 2vw, 1.3rem) clamp(1rem, 2.5vw, 1.6rem);
            margin: 0.9rem 0;
            border: 1px solid var(--border);
            transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
            position: relative;
            overflow: hidden
        }

        .step-box::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40px;
            height: 40px;
            background: var(--accent-alt);
            opacity: 0;
            clip-path: polygon(100% 0, 0 0, 100% 100%);
            transition: opacity var(--t) var(--ease)
        }

        .step-box:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-glow)
        }

        .step-box:hover::after {
            opacity: 0.7
        }

        .tip-box {
            border-left: 3px solid var(--accent-alt);
            background: var(--bg-surface-2);
            border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
            position: relative
        }

        .tip-box::before {
            content: '//';
            position: absolute;
            top: 0.7rem;
            left: -0.1rem;
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--accent-alt);
            font-weight: 700;
            background: var(--bg-surface-2);
            padding: 0 0.2rem
        }

        .badge {
            background: var(--accent);
            color: #fff;
            font-family: var(--font-mono);
            font-size: 0.58rem;
            font-weight: 700;
            padding: 0.18rem 0.8rem;
            border-radius: var(--radius-sm);
            display: inline-block;
            letter-spacing: 0.1em;
            text-transform: uppercase
        }

        .highlight {
            background: var(--accent-pale);
            padding: 0.1rem 0.5rem;
            border-radius: var(--radius-sm);
            font-family: var(--font-mono);
            font-size: 0.88em;
            font-weight: 700;
            color: var(--accent);
            border: 1px solid var(--border-accent)
        }

        .demo-box {
            background: var(--bg-surface-2);
            border-radius: var(--radius);
            padding: 0.7rem 1rem;
            margin: 0.65rem 0;
            border: 1px dashed var(--border);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.35rem 0.6rem
        }

        .demo-box span {
            background: var(--bg-surface);
            padding: 0.18rem 0.85rem;
            border-radius: var(--radius-sm);
            font-family: var(--font-mono);
            font-size: 0.82rem;
            border: 1px solid var(--border-accent);
            color: var(--accent);
            font-weight: 700
        }

        .lameo {
            background: var(--bg-surface);
            border-radius: var(--radius-sm);
            padding: 0.3rem 1.4rem;
            display: inline-block;
            font-family: var(--font-mono);
            font-size: clamp(1rem, 3.5vw, 1.5rem);
            letter-spacing: 5px;
            color: var(--text-primary);
            border: 1px solid var(--border)
        }

        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--bg-surface);
            border-radius: var(--radius);
            overflow: hidden;
            margin: 0.9rem 0;
            border: 1px solid var(--border)
        }

        th {
            background: var(--bg-surface-2);
            font-family: var(--font-mono);
            font-weight: 700;
            padding: 10px 14px;
            text-align: left;
            color: var(--text-muted);
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-bottom: 1px solid var(--border)
        }

        td {
            padding: 10px 14px;
            border-bottom: 1px solid var(--border);
            font-size: 0.88rem;
            color: var(--text-secondary)
        }

        tr:last-child td {
            border-bottom: none
        }

        tr:hover td {
            background: var(--bg-surface-2);
            color: var(--text-primary)
        }

        .input-sec {
            position: sticky;
            top: 0;
            z-index: 999;
            padding: 0.5rem 0 0.3rem;
            background: linear-gradient(to bottom, var(--bg-primary) 75%, transparent)
        }

        .input {
            position: relative;
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            padding: 0.4rem;
            transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
            margin: 0 2%
        }

        .input:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-pale)
        }

        .input textarea {
            width: 100%;
            border: none;
            outline: none;
            resize: none;
            font-size: clamp(1rem, 2vw, 1.1rem);
            font-family: var(--font-mono);
            color: var(--text-primary);
            background: transparent;
            padding: 0.2rem 2.4rem 0.2rem 0.2rem;
            min-height: 44px;
            line-height: 1.5;
            font-weight: 400;
            text-align: center;
        }

        .input textarea::placeholder {
            color: var(--text-light);
            font-weight: 400
        }

        #inputCount {
            position: absolute;
            bottom: 0.4rem;
            right: 90px;
            font-family: var(--font-mono);
            font-size: 0.55rem;
            color: var(--text-muted);
            padding: 0.05rem 0.5rem;
            border-radius: var(--radius-sm);
            pointer-events: none;
            font-weight: 700
        }

        #clearInput,
        #pasteInput,
        #bioIdeas {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            background: var(--bg-surface-2);
            border: none;
            border-radius: var(--radius-sm);
            width: 30px;
            height: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--text-secondary);
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            touch-action: manipulation;
            transition: all var(--t) var(--ease);
            -webkit-tap-highlight-color: transparent
        }

        #clearInput:hover {
            background: #dc2743;
            color: white
        }

        #bioIdeas {
            right: 10px;
            top: auto;
            width: 80px;
            height: 25px;
            bottom: 5px;
            background: var(--accent);
            color: #fff;
            border: none;
            cursor: pointer;
            display: block;
            border-radius: var(--radius-sm)
        }

        #pasteInput:hover,
        #bioIdeas:hover {
            background: #22c55e;
            color: white
        }

        #clearInput:active,
        #pasteInput:active,
        #bioIdeas:active {
            transform: scale(0.88)
        }

        #pasteInput {
            display: block;
            width: auto;
            padding: 0 10px;
            background: transparent;
            font-size: 11px;
            font-family: var(--font-mono);
            color: var(--text-muted)
        }

        .menu-wrapper {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            position: relative;
            width: 100%;
            background: var(--bg-surface);
            border-radius: var(--radius-sm);
            padding: 0.18rem 0.12rem;
            border: 1px solid var(--border);
            overflow: hidden
        }

        #topMenu {
            display: flex;
            gap: 0.2rem;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0.15rem 0.1rem 0.2rem;
            flex: 1;
            align-items: center;
            scroll-behavior: smooth
        }

        #topMenu::-webkit-scrollbar {
            display: none
        }

        .nav-btn {
            flex-shrink: 0;
            background: transparent;
            border: none;
            border-radius: var(--radius-sm);
            padding: 0.28rem 0.9rem;
            font-size: clamp(0.65rem, 1.3vw, 0.75rem);
            font-weight: 600;
            font-family: var(--font);
            color: var(--text-muted);
            cursor: pointer;
            touch-action: manipulation;
            white-space: nowrap;
            transition: all var(--t) var(--ease);
            min-height: 34px;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            -webkit-tap-highlight-color: transparent;
            user-select: none
        }

        .nav-btn i {
            font-style: normal;
            font-weight: 700
        }

        .nav-btn:hover {
            color: var(--text-primary);
            background: var(--bg-surface-2)
        }

        .nav-btn:active {
            transform: scale(0.93)
        }

        .nav-btn.active,
        .deco-mood-chip.active {
            color: var(--text-primary);
            background: var(--bg-primary);
            font-weight: 700
        }

        .scroll-btn {
            background: var(--bg-surface-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 0.15rem 0.4rem;
            font-size: 0.75rem;
            color: var(--text-secondary);
            cursor: pointer;
            touch-action: manipulation;
            min-height: 32px;
            min-width: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all var(--t) var(--ease);
            -webkit-tap-highlight-color: transparent;
            user-select: none
        }

        .scroll-btn:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent)
        }

        .scroll-btn:active {
            transform: scale(0.9)
        }

        .scroll-btn:disabled {
            opacity: 0.2;
            pointer-events: none
        }

        .font-resize {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 0.45rem;
            flex-wrap: wrap
        }

        .font-resize button {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 0.2rem 0.8rem;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-secondary);
            cursor: pointer;
            touch-action: manipulation;
            min-height: 34px;
            min-width: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all var(--t) var(--ease);
            -webkit-tap-highlight-color: transparent;
            font-family: var(--font-mono)
        }

        .font-resize button:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent)
        }

        .font-resize button:active {
            transform: scale(0.9)
        }

        .font-resize input[type="range"] {
            width: 140px;
            height: 4px;
            -webkit-appearance: none;
            appearance: none;
            background: var(--bg-surface-3);
            border-radius: 2px;
            outline: none;
            flex-shrink: 1
        }

        .font-resize input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            background: var(--accent);
            border-radius: var(--radius-sm);
            cursor: pointer;
            border: 2px solid var(--bg-primary);
            transition: transform var(--t) var(--ease)
        }

        .font-resize input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.2)
        }

        .font-resize input[type="range"]::-moz-range-thumb {
            width: 18px;
            height: 18px;
            background: var(--accent);
            border-radius: var(--radius-sm);
            cursor: pointer;
            border: 2px solid var(--bg-primary)
        }

        .cat-name h2 {
            font-size: clamp(0.62rem, 1.6vw, 0.72rem);
            margin: 0;
            color: var(--text-muted)
        }

        .cat-name h2::before {
            width: 12px
        }

        .cat-name span {
            font-family: var(--font-mono);
            font-size: 0.6rem;
            color: var(--text-muted);
            padding: 0.06rem 0.6rem;
            font-weight: 700;
            margin-left: 6px;
        }

        #stylishnamelist {
            display: block;
            margin-top: 0.8rem
        }

        .font,
        .qList p {
            background: var(--bg-surface);
            border-radius: 20px 0;
            border: 1.5px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
            position: relative;
            margin-bottom: 5px;
            overflow: hidden;
        }

        .font:hover {
            border-color: var(--accent);
            transform: translateY(-2px)
        }

        .font:hover div {
            display: block
        }

        .font p {
            font-size: 1.15rem;
            margin: 0;
            word-break: break-word;
            line-height: 1.5;
            color: var(--text-secondary);
            flex: 1;
            font-weight: 500;
            font-family: -apple-system, BlinkMacSystemFont, sans-serif;
            padding: 10px 0 20px;
            cursor: pointer;
            text-align: center;
            transition: color var(--t) var(--ease)
        }

        .font p:hover {
            color: var(--accent)
        }

        .dark .font p:hover,
        .dark .font .alert:hover {
            color: #fff
        }

        .font div {
            position: absolute;
            bottom: 0;
            left: 14px;
            display: none;
            pointer-events: none;
            user-select: none;
            font-family: var(--font-mono);
            font-size: 0.58rem;
            color: var(--text-muted);
            padding: 0.04rem 0.5rem;
            margin-left: 3px;
        }

        .font button,
        .otools a {
            background: var(--bg-primary);
            border: none;
            border-radius: var(--radius-sm);
            padding: 0.26rem 0.8rem;
            font-size: clamp(0.6rem, 1.2vw, 0.7rem);
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--text-muted);
            cursor: pointer;
            touch-action: manipulation;
            min-height: 38px;
            min-width: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.2rem;
            line-height: 1.2;
            transition: all var(--t) var(--ease);
            flex-shrink: 0;
            -webkit-tap-highlight-color: transparent;
            user-select: none
        }

        .font button:hover,
        .otools a:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-1px)
        }

        .font button:active,
        .otools a:active {
            transform: scale(0.9)
        }



        .load-more-trigger {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.78rem;
            font-family: var(--font-mono);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem
        }

        .spinner {
            width: 18px;
            height: 18px;
            border: 2px solid var(--border);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
            display: inline-block
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        #stylishnamerandom {
            display: block
        }

        .random-card-grid {
            display: block
        }

        #decoDialogClose {
            color: var(--text-secondary)
        }

        .cat-name {
            margin: 10px;
        }

        .deco-mood-label {
            font-family: var(--font-mono);
            font-size: clamp(0.6rem, 1.3vw, 0.7rem);
            font-weight: 700;
            color: var(--text-muted);
            white-space: nowrap;
            padding-right: 0.3rem;
            text-transform: uppercase;
            letter-spacing: 0.08em
        }

        .deco-mood-bar {
            display: flex;
            gap: 0.22rem;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0.1rem 0.08rem;
            flex: 1
        }

        .deco-mood-bar::-webkit-scrollbar {
            display: none
        }

        .deco-mood-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.2rem;
            background: var(--bg-surface);
            border-radius: var(--radius-sm);
            padding: 0.5rem;
            white-space: nowrap;
            font-family: var(--font-mono);
            font-size: clamp(0.6rem, 1.3vw, 0.7rem);
            color: var(--text-muted);
            border: none;
            transition: all var(--t) var(--ease);
            flex-shrink: 0;
            cursor: pointer;
            font-weight: 700;
            -webkit-tap-highlight-color: transparent;
            user-select: none
        }

        .deco-mood-chip:hover {
            color: var(--text-primary)
        }

        .deco-mood-chip input[type="radio"] {
            display: none
        }


        .deco-mood-chip span {
            padding: 0.1rem
        }

        .deco-loadmore-wrap {
            text-align: center;
            margin-bottom: 2rem
        }

        .deco-loadmore-btn {
            background: var(--accent);
            border: none;
            border-radius: var(--radius-sm);
            padding: 0.5rem 1.6rem;
            font-family: var(--font-mono);
            font-size: clamp(0.80rem, 1.3vw, 0.95rem);
            font-weight: 700;
            color: var(--text-secondary);
            cursor: pointer;
            touch-action: manipulation;
            min-height: 42px;
            transition: all var(--t) var(--ease);
            -webkit-tap-highlight-color: transparent;
            user-select: none
        }

        .deco-loadmore-btn:hover {
            background: var(--accent);
            color: white
        }

        .deco-loadmore-btn:active {
            transform: scale(0.96)
        }

        .regen {
            position: fixed;
            bottom: 20%;
            right: 0;
            display: flex;
            gap: 6px;
            flex-direction: column;
            align-items: flex-end;
        }

        .regen svg {
            width: 20px;
            height: 20px;
        }

        .regen button {
            padding: 10px 12px;
            border-radius: 8px 0 0 8px;
            cursor: pointer;
            border: 1px solid var(--border);
            border-right: none;
            background: var(--bg-surface);
            font-size: 1rem;
            color: var(--text-secondary);
            box-shadow: var(--shadow-soft);
            transition: all var(--t) var(--ease);
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            user-select: none
        }

        .regen button:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent)
        }

        #regen {
            display: flex;
            flex-direction: column;
            font-size: 12px;
            padding: 10px;
            border-radius: 20px 0 0 20px;
            align-items: center;
        }

        .info-text {
            padding: 0 12px
        }

        .info-text img {
            max-width: 720px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-soft)
        }



        .menu-wrapper::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 18px;
            pointer-events: none;
            background: linear-gradient(to right, transparent, rgba(242, 239, 232, 0.95));
            opacity: 0;
            transition: opacity 0.3s;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0
        }

        .menu-wrapper:not(:has(.scroll-right:disabled))::after {
            opacity: 1
        }

        #themeToggle {
            background: #0000000a;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            height: 35px;
            padding: 10px;
            cursor: pointer;
            display: flex;
            color: var(--text-secondary);
            align-items: center;
            justify-content: center;
            transition: all var(--t) var(--ease);
            -webkit-tap-highlight-color: transparent;
            font-family: var(--font-mono);
        }


        .font .alert {
            background: var(--bg-surface);
            color: var(--accent);
            font-family: var(--font-mono);
            position: absolute;
            border: none;
            top: 0;
            left: 0;
            right: 50px;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        .info-div .image-box img,
        .feat {
            width: 100%;
            height: auto;
        }


        @media (prefers-reduced-motion:reduce) {

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

        .otools a {
            display: inline-block;
            min-height: auto;
            padding: 10px;
            margin: 3px;
            text-decoration: none;
        }

        .top-point ul {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            list-style: none;
            padding-left: 0;
        }

        .top-point li {
            font-size: 1.1rem;
            font-weight: bold;
            width: 210px;
        }

        footer {
            background: #333;
            padding: 1%;
        }

        footer .inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        footer .inner a {
            color: #fff;
            padding: 10px;
        }

        @media (min-width:720px) {

            #stylishnamelist,
            #stylishnamerandom {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 5px
            }

            #stylishnamelist .cat-name,
            #stylishnamerandom .cat-name,
            .load-more-trigger,
            .deco-loadmore-wrap,
            .menu-wrapper {
                grid-column: 1 / -1
            }

            .info-div {
                display: flex;
                align-items: flex-start;
                gap: 30px;
            }

            .image-box {
                flex: 0 0 40%;
            }

            .text-box {
                flex: 0 0 60%;
                padding-right: 10px;
            }

            .feat {
                width: 720px;
            }

            .info-div .image-box img {
                width: 100%;
            }



        }

        @media (max-width:600px) {

            main {
                padding: 0 12px
            }

            .step-box {
                padding: 0.7rem 0.85rem
            }

            .tip-box {
                padding: 0.7rem 0.85rem
            }

            .menu-wrapper {
                border-radius: var(--radius-sm);
                padding: 0.08rem
            }


            .input {
                margin: 0 1%
            }
        }

        @media (max-width:480px) {
            .menu-wrapper::after {
                width: 10px
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-4px)
            }
        }

        .brand h1 {
            animation: float 3.5s ease-in-out infinite
        }