        @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Mono:wght@300;400;500&family=Syne:wght@400;600;700;800&display=swap');

        /* ───────────────────────────────────────────
   fontstylename — DARK EDITORIAL
   Deep black, blood-orange accent, glitch mono
─────────────────────────────────────────── */
        :root {
          --maxw: 980px;

          /* Light eye-friendly palette */
          --ink: #1f2937;
          /* dark gray text */
          --ink-soft: #4b5563;
          /* softer text */
          --ink-muted: #6b7280;
          /* muted text */
          --ink-faint: #9ca3af;
          /* placeholder text */

          --paper: #f8fafc;
          /* main background */
          --paper-2: #ffffff;
          /* cards / boxes */
          --paper-3: #f1f5f9;
          /* hover / secondary bg */

          --accent: #3b82f6;
          /* soft blue */
          --accent-hover: #2563eb;
          --accent-light: rgba(59, 130, 246, 0.08);
          --accent-ring: rgba(59, 130, 246, 0.22);

          --warm: #3b82f6;
          --warm-light: rgba(59, 130, 246, 0.06);

          --border: rgba(148, 163, 184, 0.35);
          --border-soft: rgba(148, 163, 184, 0.15);

          --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
          --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.06);
          --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
          --shadow-glow: 0 0 0 3px var(--accent-ring);

          --radius-sm: 22px;
          --radius-md: 8px;
          --radius-lg: 12px;
          --radius-pill: 999px;

          --ftfamily: 'Syne', sans-serif;
          --display: 'Cormorant Garamond', serif;
          --mono: 'DM Mono', monospace;

          --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
          --ease-out: cubic-bezier(.16, 1, .3, 1);
        }

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

        html,
        body {
          height: 100%;
        }

        body {
          font-family: var(--ftfamily);
          font-size: 16px;
          line-height: 1.65;
          color: var(--ink);
          background-color: var(--paper);
          background-image:
            radial-gradient(ellipse at 85% 0%, rgba(59, 130, 246, 0.04) 0%, transparent 55%),
            radial-gradient(ellipse at 0% 100%, rgba(14, 165, 233, 0.03) 0%, transparent 60%);
          background-attachment: fixed;
          -webkit-font-smoothing: antialiased;
          padding-bottom: 60px;
        }

        a {
          text-decoration: none;
        }

        h1 {
          font-family: var(--display);
          font-size: 1.7rem;
          font-weight: 300;
          font-style: italic;
          letter-spacing: .01em;
          color: var(--ink);
          margin: 0;
        }

        h2 {
          font-family: var(--display);
          font-weight: 400;
          color: var(--ink-soft);
          font-size: 1.05rem;
        }

        h3 {
          font-family: var(--ftfamily);
          font-weight: 600;
          color: var(--ink-soft);
          font-size: .8rem;
          letter-spacing: .08em;
          text-transform: uppercase;
        }

        /* ── HEADER ── */
        header {
          background: #333333;
          border-bottom: 1px solid var(--border);
          box-shadow: none;
          position: relative;
        }


        header .inner {
          max-width: var(--maxw);
          margin: 0 auto;
          padding: 0 24px;
          display: flex;
          align-items: center;
          gap: 10px;
        }

        header a {
          color: var(--ink-muted);
          padding: 6px 12px;
          cursor: pointer;
          font-size: .85rem;
          font-weight: 600;
          letter-spacing: .04em;
          transition: color .2s;
        }

        header a:hover {
          color: var(--accent);
        }

        header h1 {
          color: var(--ink);
          background: none;
          -webkit-text-fill-color: unset;
        }

        /* ── CONTAINER ── */
        .container {
          max-width: var(--maxw);
          margin: 0 auto;
          padding: 0 24px;
        }

        /* ── TOP MENU ── */
        #topMenu {
          display: flex;
          align-items: center;
          gap: 4px;
          padding: 12px 0;
          overflow-x: auto;
          overflow-y: hidden;
          white-space: nowrap;
          scroll-behavior: smooth;
          scrollbar-width: none;
        }

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

        #topMenu a {
          display: inline-flex;
          align-items: center;
          padding: 6px 14px;
          border-radius: var(--radius-pill);
          font-size: .78rem;
          font-weight: 700;
          letter-spacing: .06em;
          text-transform: uppercase;
          color: var(--ink-muted);
          border: 1px solid var(--border);
          background: transparent;
          transition: all .2s var(--ease-out);
          white-space: nowrap;
          font-family: var(--ftfamily);
        }

        #topMenu a:hover {
          color: var(--accent);
          border-color: var(--accent);
          background: var(--accent-light);
          box-shadow: 0 0 10px rgba(255, 77, 0, .2);
        }

        #topMenu a.active {
          color: #fff;
          background: var(--accent);
          border-color: var(--accent);
          font-weight: 700;
          box-shadow: 0 0 14px rgba(255, 77, 0, .35);
        }

        #topMenu h3 {
          font-size: .66rem;
          font-weight: 700;
          color: var(--ink-faint);
          text-transform: uppercase;
          letter-spacing: .1em;
          margin: 0 8px;
          white-space: nowrap;
        }

        /* ── INPUT SECTION ── */
        .input-section {
          display: flex;
          position: sticky;
          top: 0;
          z-index: 40;
          padding: 14px 0;
          gap: 10px;
          align-items: center;

        }

        .input-section div {
          width: 100%;
          position: relative;
        }

        .input-section input {
          width: 100%;
          padding: 14px 52px 14px 20px;
          border-radius: var(--radius-sm);
          border: 1.5px solid var(--border);
          background: var(--paper-2);
          font-family: var(--display);
          font-size: 1.2rem;
          font-weight: 300;
          font-style: italic;
          color: var(--ink);
          outline: none;
          box-shadow: var(--shadow-xs);
          transition: border-color .2s, box-shadow .2s;
        }

        .input-section input::placeholder {
          color: var(--ink-faint);
          font-style: italic;
        }

        .input-section input:focus {
          border-color: var(--accent);
          box-shadow: var(--shadow-glow), var(--shadow-xs);
        }

        #input-count {
          position: absolute;
          right: 30px;
          bottom: 3px;
          font-size: 10px;
          font-weight: 500;
          font-family: var(--mono);
          color: var(--ink-faint);
        }

        .clear-overlay {
          position: absolute;
          right: 4px;
          top: 50%;
          transform: translateY(-50%);
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 36px;
          height: 36px;
          border-radius: var(--radius-sm);
          cursor: pointer;
          color: var(--ink-faint);
          transition: color .2s, background .2s;
          z-index: 10;
        }

        .clear-overlay:hover {
          color: var(--accent);
          background: var(--paper-3);
        }

        /* ── BUTTONS ── */
        .btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 6px;
          padding: 12px 24px;
          border-radius: var(--radius-sm);
          border: 1.5px solid var(--accent);
          font-family: var(--ftfamily);
          font-size: .8rem;
          font-weight: 700;
          letter-spacing: .08em;
          text-transform: uppercase;
          cursor: pointer;
          background: var(--accent);
          color: #fff;
          box-shadow: none;
          transition: all .18s var(--ease-out);
          white-space: nowrap;
        }

        .btn:hover {
          background: transparent;
          color: var(--accent);
          transform: translateY(-1px);
          box-shadow: 0 0 14px rgba(255, 77, 0, .3), var(--shadow-sm);
        }

        .btn:active {
          transform: scale(.98);
        }

        .btn.secondary {
          background: transparent;
          color: var(--ink-muted);
          border: 1.5px solid var(--border);
          box-shadow: none;
        }

        .btn.secondary:hover {
          border-color: var(--ink-muted);
          color: var(--ink);
          background: var(--paper-3);
          box-shadow: none;
        }

        button.btn.closeit {
          background: #8b1a14;
          border-color: #8b1a14;
          box-shadow: none;
        }

        button#menu {
          font-size: 1.3rem;
          height: 44px;
          width: 44px;
          border-radius: var(--radius-sm);
          border: 1.5px solid var(--border);
          background: transparent;
          box-shadow: none;
          transition: all .2s;
          color: var(--ink-muted);
        }

        button#menu:hover {
          border-color: var(--accent);
          background: var(--accent-light);
          color: var(--accent);
        }

        /* ── RANDOM CLOUD ── */
        #randomcloud {
          text-align: center;
          width: 100%;
          height: 70px;
          overflow: auto;
          scrollbar-width: none;
        }

        #randomcloud::-webkit-scrollbar {
          display: none;
        }

        #randomcloud li {
          background: transparent;
          border: none;
          box-shadow: none;
        }

        #randomcloud p {
          color: var(--ink);
          background: transparent;
          border: none;
          font-size: 26px !important;
          padding: 10px 0 0;
          margin: 0;
          cursor: pointer;
          transition: color .2s, transform .2s var(--ease-spring);
          font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
        }

        #randomcloud p:hover {
          color: var(--accent);
          transform: scale(1.12);
        }

        #randombutton {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          border-radius: var(--radius-sm);
          padding: 12px 28px;
          margin-top: 12px;
          background: transparent;
          color: var(--ink-soft);
          font-family: var(--display);
          font-weight: 400;
          font-style: italic;
          font-size: 1.05rem;
          border: 1.5px solid var(--border);
          cursor: pointer;
          box-shadow: none;
          transition: all .18s var(--ease-out);
        }

        #randombutton:hover {
          background: var(--accent);
          border-color: var(--accent);
          color: #fff;
          transform: translateY(-1px);
          box-shadow: 0 0 14px rgba(255, 77, 0, .3), var(--shadow-sm);
        }

        /* ── FONT SIZE CONTROLLER ── */
        .font-size-controller {
          display: flex;
          align-items: center;
          gap: 14px;
          justify-content: flex-end;
          padding: 10px;
        }

        .font-size-controller label {
          font-size: .68rem;
          font-weight: 700;
          font-family: var(--mono);
          color: var(--ink-muted);
          text-transform: uppercase;
          letter-spacing: .1em;
        }

        .font-size-controller input[type="range"] {
          width: 200px;
          height: 2px;
          background: #8b8b8b;
          border-radius: var(--radius-pill);
          outline: none;
          appearance: none;
          -webkit-appearance: none;
          cursor: pointer;
        }

        .font-size-controller input[type="range"]::-webkit-slider-thumb {
          appearance: none;
          width: 16px;
          height: 16px;
          background: var(--accent);
          border: 2px solid var(--paper);
          border-radius: 50%;
          box-shadow: 0 0 0 1px var(--accent), 0 0 8px rgba(255, 77, 0, .4);
          transition: transform .15s var(--ease-spring);
          cursor: grab;
        }

        .font-size-controller input[type="range"]::-webkit-slider-thumb:hover {
          transform: scale(1.25);
        }

        /* ── RESULTS GRID ── */
        #results {
          width: 100%;
        }

        .grid ul {
          display: grid;
          margin: 0;
          padding: 0;
          gap: 6px;
        }

        .fontstylename li {
          display: flex;
          align-items: stretch;
          position: relative;
          border-radius: var(--radius-sm);
          overflow: hidden;
          border: 1px solid var(--border);
          background: var(--paper-2);
          box-shadow: none;
          transition: border-color .2s, box-shadow .2s, transform .2s var(--ease-out);
        }

        .fontstylename li:hover {
          border-color: var(--accent);
          box-shadow: 0 0 18px rgba(255, 77, 0, .14), var(--shadow-sm);
          transform: translateY(-1px);
        }

        li p {
          background: transparent;
          padding: 10px 0 15px;
          margin: 0;
          color: var(--ink);
          cursor: pointer;
          user-select: none;
          text-align: center;
          width: 100%;
          position: relative;
          white-space: normal;
          word-break: break-word;
          font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
          overflow: hidden;
          border: none;
          transition: color .2s, background .2s;
          line-height: 1.55;
        }

        li p:hover,
        li p:focus {
          outline: none;
          color: var(--accent);
          background: var(--warm-light);
        }

        li i {
          position: absolute;
          bottom: 7px;
          left: 14px;
          font-size: 10px;
          font-weight: 500;
          font-family: var(--mono);
          color: var(--ink-faint);
          z-index: 2;
          display: flex;
          align-items: baseline;
          gap: 4px;
          letter-spacing: .04em;
        }

        .fontstylename li button {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
          font-size: .72rem;
          font-weight: 700;
          letter-spacing: .08em;
          text-transform: uppercase;
          padding: 8px 18px 8px 12px;
          gap: 4px;
          color: #fff;
          background: #444;
          border: none;
          border-left: 1px solid var(--border);
          cursor: pointer;
          font-family: var(--ftfamily);
          transition: background .2s, color .2s;
        }

        .fontstylename li button:hover {
          background: var(--accent);
          border-left-color: var(--accent);
        }

        /* ── FLOATING BUTTONS ── */
        .buttons {
          position: fixed;
          right: 10px;
          bottom: 70px;
          z-index: 99;
          display: flex;
          flex-direction: column-reverse;
          gap: 2px;
        }

        .buttons button {
          width: 48px;
          height: 48px;
          border-radius: var(--radius-sm);
          background: var(--paper-2);
          border: 1px solid var(--border);
          box-shadow: var(--shadow-sm);
          display: inline-flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: all .2s var(--ease-out);
          color: var(--ink-muted);
        }

        .buttons button:hover {
          border-color: var(--accent);
          background: var(--accent);
          color: #fff;
          transform: scale(1.05);
          box-shadow: 0 0 14px rgba(255, 77, 0, .4), var(--shadow-md);
        }

        #bulbBtn svg {
          stroke: #c07000;
        }

        #bulbBtn:hover svg {
          stroke: #fff;
        }

        button,
        #othertools a {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          border: none;
          cursor: pointer;
          background: transparent;
          font-size: 16px;
          line-height: 1;
          touch-action: manipulation;
          -webkit-tap-highlight-color: transparent;
          font-family: var(--ftfamily);
        }

        button:hover {
          opacity: .85;
        }

        #othertools a {
          padding: 8px 16px;
          background: transparent;
          color: var(--ink-muted);
          border-radius: var(--radius-sm);
          font-size: .78rem;
          font-weight: 700;
          letter-spacing: .06em;
          text-transform: uppercase;
          border: 1px solid var(--border);
          transition: all .2s;
        }

        #othertools a:hover {
          background: var(--accent);
          color: #fff;
          border-color: var(--accent);
          box-shadow: 0 0 10px rgba(255, 77, 0, .3);
        }

        svg {
          width: 18px;
          height: 18px;
          stroke: currentColor;
          stroke-width: 1.7;
          fill: none;
        }

        /* ── SIDE DRAWER ── */
        .f-m {
          position: fixed;
          top: 0;
          right: 0;
          width: 300px;
          height: 100%;
          background: var(--paper-2);
          border-left: 1px solid var(--border);
          box-shadow: -4px 0 32px rgba(0, 0, 0, .8);
          z-index: 9999;
          display: none;
          overflow-y: auto;
          padding: 24px 20px;
        }

        .floatmenu h3 {
          color: var(--ink-faint);
          font-size: .66rem;
          text-transform: uppercase;
          letter-spacing: .1em;
          margin-bottom: 8px;
          font-family: var(--mono);
        }

        .floatmenu a,
        .right-menu a {
          display: inline-block;
          align-items: center;
          padding: 9px 14px;
          border-radius: var(--radius-sm);
          font-size: .85rem;
          font-weight: 600;
          color: var(--ink-muted);
          background: transparent;
          border: 1px solid var(--border);
          margin-bottom: 6px;
          transition: all .2s;
          font-family: var(--ftfamily);
          scroll-snap-align: start;
          white-space: nowrap;
          letter-spacing: .02em;
        }

        .floatmenu a:hover,
        .right-menu a:hover {
          color: #fff;
          background: var(--accent);
          border-color: var(--accent);
          box-shadow: 0 0 10px rgba(255, 77, 0, .3);
        }

        .font-list {
          margin-bottom: 24px;
        }

        .font-list h2 {
          color: var(--ink-soft);
          margin-bottom: 10px;
          font-size: .95rem;
        }

        .info-text {
          white-space: normal;
          word-break: break-word;
        }

        .info-text img {
          max-width: 100%;
          border-radius: var(--radius-sm);
        }

        .info-text ul {
          overflow: auto;
        }

        .fAr {
          display: none;
        }

        #fMN {
          overflow: auto;
        }

        #menu {
          color: var(--ink-muted);
        }

        .close-button {
          position: fixed;
          top: 10px;
          right: 10px;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 38px;
          height: 38px;
          font-size: 18px;
          border: 1px solid var(--border);
          border-radius: var(--radius-sm);
          color: var(--ink-muted);
          background: var(--paper-2);
          box-shadow: var(--shadow-xs);
          cursor: pointer;
          transition: all .2s;
          z-index: 10000;
          padding: 0;
        }

        .close-button:hover {
          border-color: var(--accent);
          color: #fff;
          background: var(--accent);
          box-shadow: 0 0 12px rgba(255, 77, 0, .4);
        }

        /* ── COPIED TOAST ── */
        .copied {
          display: flex;
          flex-direction: column;
          gap: 4px;
          padding: 12px 14px;
          position: fixed;
          top: 12%;
          right: 0;
          z-index: 9999;
          width: 210px;
          background: var(--paper-3);
          color: var(--ink);
          border: 1px solid var(--accent);
          border-radius: var(--radius-sm) 0 0 var(--radius-sm);
          box-shadow: 0 0 20px rgba(255, 77, 0, .25), var(--shadow-md);
          animation: slideIn .25s var(--ease-spring);
        }

        @keyframes slideIn {
          from {
            transform: translateX(100%);
            opacity: 0;
          }

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

        .copied textarea {
          background: transparent;
          border: none;
          color: var(--ink-soft);
          font-family: var(--mono);
          font-size: .8rem;
          resize: none;
          outline: none;
          padding: 6px;
        }

        .copied-btn {
          position: absolute;
          top: 8px;
          left: 10px;
          background: var(--accent);
          color: #fff;
          border-radius: var(--radius-pill);
          padding: 3px 10px;
          font-size: .68rem;
          font-weight: 700;
          font-family: var(--mono);
          letter-spacing: .06em;
          border: none;
          cursor: default;
        }

        /* ── LOADER ── */
        .loader {
          width: 40px;
          height: 40px;
          border: 2px solid var(--paper-3);
          border-top-color: var(--accent);
          border-radius: 50%;
          animation: spin .75s linear infinite;
          box-shadow: 0 0 10px rgba(255, 77, 0, .2);
        }

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

        .page-load-status,
        .aryapage {
          display: none;
          align-items: center;
          justify-content: center;
          width: 100%;
          margin: 24px 0;
        }

        .loadmore {
          text-align: center;
          padding: 16px 0;
        }

        /* ── POPUP ── */
        .flourish-popup {
          position: fixed;
          inset: 0;
          background: rgba(10, 9, 8, .85);
          backdrop-filter: blur(14px);
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 999;
          animation: fadeIn .2s ease;
        }

        @keyframes fadeIn {
          from {
            opacity: 0;
          }

          to {
            opacity: 1;
          }
        }

        .flourish-popup.hidden {
          display: none;
        }

        .popup-box {
          background: var(--paper-2);
          width: 92%;
          max-width: 460px;
          max-height: 72vh;
          border-radius: var(--radius-md);
          overflow: hidden;
          display: flex;
          flex-direction: column;
          box-shadow: var(--shadow-md), 0 0 0 1px var(--border), 0 0 30px rgba(255, 77, 0, .1);
          animation: popIn .22s var(--ease-spring);
        }

        .popup-box::before {
          content: '';
          display: block;
          height: 2px;
          background: linear-gradient(90deg, var(--accent) 0%, #ff1a00 50%, transparent 100%);
          flex-shrink: 0;
        }

        @keyframes popIn {
          from {
            transform: scale(.96) translateY(8px);
            opacity: 0;
          }

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

        .popup-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          background: var(--paper-3);
          border-bottom: 1px solid var(--border);
          padding: 4px 16px;
        }

        .popup-header h3 {
          font-family: var(--display);
          font-size: 1.05rem;
          font-weight: 400;
          font-style: italic;
          color: var(--ink);
          padding: 12px 0;
          margin: 0;
          text-transform: none;
          letter-spacing: 0;
        }

        .popup-header button {
          background: none;
          border: none;
          color: var(--ink-muted);
          cursor: pointer;
          font-size: 16px;
          padding: 14px;
          border-radius: var(--radius-sm);
          transition: all .2s;
        }

        .popup-header button:hover {
          background: var(--paper);
          color: var(--accent);
        }

        #flourishList {
          padding: 12px;
          overflow-y: auto;
          list-style: none;
          flex: 1;
        }

        #flourishList li {
          margin-bottom: 7px;
          position: relative;
          border-radius: var(--radius-sm);
          overflow: hidden;
          border: 1px solid var(--border);
          background: var(--paper-3);
          transition: all .18s var(--ease-out);
        }

        #flourishList li:hover {
          border-color: var(--accent);
          transform: translateY(-1px);
          box-shadow: 0 0 12px rgba(255, 77, 0, .2), var(--shadow-sm);
        }

        #flourishList .count {
          display: flex;
          justify-content: flex-end;
          font-size: 9px;
          font-family: var(--mono);
          color: var(--ink-faint);
          padding: 2px 8px;
          font-weight: 500;
        }

        #flourishList li p {
          font-size: 1rem !important;
          color: var(--ink);
          border-radius: 0;
          border: none;
          background: transparent;
          text-align: center;
          padding: 12px;
        }

        #flourishList li:hover p {
          color: var(--accent);
        }

        .flourishit {
          padding: 12px 16px;
          text-align: center;
          border-top: 1px solid var(--border);
          background: var(--paper-3);
        }

        .select-flourish {
          display: flex;
          align-items: center;
          gap: 10px;
          padding: 5px;
          flex-wrap: wrap;
          justify-content: center;
        }

        .select-flourish label {
          font-size: .78rem;
          font-weight: 700;
          font-family: var(--mono);
          color: var(--ink-soft);
          letter-spacing: .06em;
          text-transform: uppercase;
        }

        #flourishSelect {
          appearance: none;
          padding: 8px 28px 8px 14px;
          font-size: .85rem;
          font-family: var(--ftfamily);
          border-radius: var(--radius-sm);
          border: 1.5px solid var(--border);
          background: var(--paper-2);
          color: var(--ink);
          cursor: pointer;
          outline: none;
          transition: border-color .2s, box-shadow .2s;
        }

        #flourishSelect:focus {
          border-color: var(--accent);
          box-shadow: var(--shadow-glow);
        }

        #flourishRegenerate {
          padding: 11px 26px;
          border-radius: var(--radius-sm);
          background: var(--accent);
          color: #fff;
          font-family: var(--ftfamily);
          font-weight: 700;
          font-size: .8rem;
          letter-spacing: .08em;
          text-transform: uppercase;
          border: none;
          cursor: pointer;
          box-shadow: none;
          transition: all .16s var(--ease-out);
        }

        #flourishRegenerate:hover {
          background: transparent;
          color: var(--accent);
          border: 1.5px solid var(--accent);
          transform: translateY(-1px);
          box-shadow: 0 0 14px rgba(255, 77, 0, .3);
        }

        #flourishRegenerate:active {
          transform: scale(.97);
        }

        .ads {
          grid-column: 1 / -1;
          display: block;
          width: 100%;
          margin: 12px 0;
          border-radius: var(--radius-sm);
          background: var(--paper-2);
          border: 1px dashed var(--border);
          overflow: hidden;
        }

        .material-symbols-outlined {
          font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }

        /* ── FOOTER ── */
        footer {
          margin-top: 60px;
          background: var(--paper);
          border-top: 1px solid var(--border);
          padding: 22px 0;
          position: relative;
        }

        footer::before {
          content: '';
          display: block;
          height: 2px;
          width: 100%;
          background: linear-gradient(90deg, var(--accent) 0%, #ff1a00 40%, transparent 100%);
          position: absolute;
          top: 0;
          left: 0;
        }

        footer .inner {
          max-width: var(--maxw);
          margin: 0 auto;
          padding: 0 24px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 12px;
          flex-wrap: wrap;
        }

        footer a {
          background: none;
          -webkit-text-fill-color: unset;
          color: var(--accent);
          font-weight: 700;
          font-family: var(--ftfamily);
          font-size: .85rem;
          letter-spacing: .04em;
          transition: color .2s;
        }

        footer a:hover {
          color: var(--ink);
        }

        /* ── INFO TEXT ── */
        .info-text {
          font-family: var(--ftfamily);
          line-height: 1.7;
          color: var(--ink-soft);
          padding: 48px 32px;
          background-color: var(--paper-2);
          margin-top: 24px;
          border-radius: var(--radius-sm);
          border: 1px solid var(--border);
        }

        .info-text h1 {
          font-family: var(--display);
          font-size: 2.4rem;
          font-weight: 300;
          font-style: italic;
          background: none;
          -webkit-text-fill-color: var(--ink);
          color: var(--ink);
          text-align: center;
          margin-bottom: 32px;
          padding-bottom: 16px;
          border-bottom: 1px solid var(--border);
        }

        .info-text h2 {
          font-family: var(--display);
          font-size: 1.6rem;
          font-weight: 400;
          color: var(--ink);
          margin-top: 40px;
          margin-bottom: 14px;
          position: relative;
        }

        .info-text h2::after {
          content: '';
          display: block;
          width: 32px;
          height: 2px;
          background: var(--accent);
          margin-top: 6px;
          border-radius: 1px;
        }

        .info-text h3 {
          font-family: var(--mono);
          font-size: .85rem;
          font-weight: 500;
          color: var(--accent);
          margin-top: 28px;
          margin-bottom: 10px;
          letter-spacing: .06em;
          text-transform: uppercase;
        }

        .info-text p {
          font-size: 1rem;
          margin-bottom: 18px;
          text-align: justify;
          color: var(--ink-soft);
        }

        .info-text ul,
        .info-text ol {
          margin-bottom: 24px;
          padding-left: 22px;
        }

        .info-text li {
          font-size: 1rem;
          margin-bottom: 9px;
          color: var(--ink-soft);
        }

        .info-text strong {
          color: var(--ink);
          font-weight: 700;
        }

        .info-text code {
          background-color: var(--paper-3);
          color: var(--accent);
          padding: 2px 7px;
          border-radius: 3px;
          font-family: var(--mono);
          font-size: 0.9rem;
          word-break: break-all;
          display: inline-block;
          margin: 2px;
          border: 1px solid var(--border);
        }

        .info-text .example-box {
          background-color: var(--paper-3);
          border-left: 3px solid var(--accent);
          border-radius: 2px;
          padding: 20px 24px;
          margin: 28px 0;
          box-shadow: none;
        }

        .info-text .example-title {
          font-weight: 700;
          font-size: .8rem;
          font-family: var(--mono);
          color: var(--ink-muted);
          text-transform: uppercase;
          letter-spacing: .08em;
          margin-top: 18px;
          margin-bottom: 10px;
        }

        .info-text .example-title:first-child {
          margin-top: 0;
        }

        .info-text .example-box ol {
          list-style-type: decimal;
          margin-bottom: 14px;
        }

        .info-text .example-box li {
          font-size: 1.1rem;
          letter-spacing: 0.3px;
          color: var(--ink);
          background: var(--paper-2);
          padding: 8px 12px;
          margin-bottom: 5px;
          border-radius: var(--radius-sm);
          border: 1px solid var(--border);
        }

        /* ── SCROLLBAR ── */
        ::-webkit-scrollbar {
          width: 6px;
          height: 6px;
        }

        ::-webkit-scrollbar-track {
          background: var(--paper-2);
        }

        ::-webkit-scrollbar-thumb {
          background: var(--paper-3);
          border-radius: var(--radius-pill);
        }

        ::-webkit-scrollbar-thumb:hover {
          background: var(--accent);
        }

        /* ── SELECTION ── */
        ::selection {
          background: rgba(255, 77, 0, .35);
          color: var(--ink);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 600px) {
          .info-text {
            padding: 24px 16px;
          }

          .info-text h1 {
            font-size: 1.8rem;
          }

          .info-text h2 {
            font-size: 1.35rem;
          }
        }

        @media (max-width: 640px) {
          h1 {
            font-size: 1.3rem;
          }

          .container {
            padding: 0 14px;
          }

          .f-m {
            width: 100%;
          }

          .font-size-controller input[type="range"] {
            width: 160px;
          }
        }

        @media (min-width: 720px) {
          .fontstylename li p {
            font-size: 1.4rem;
          }
        }