        :root {
          --main: #6366f1;
          --bg: #f3f3f3;
          --li: #fff;
          --text: #1e293b;
          --muted: #64748b;
          --border: #e2e8f0;
          --radius: 12px;
          --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        }

        * {
          box-sizing: border-box;

        }

        .aryapage {
          display: none;
        }

        a {
          text-decoration: none;
        }

        body {
          font-family: 'Inter', system-ui, -apple-system, sans-serif;
          background-color: var(--bg);
          color: var(--text);
          margin: 0;
          padding: 0;
          line-height: 1.5;
          margin-bottom: 150px;
        }

        #openMenu {
          border: none;
          background: transparent;
          color: #ffffffd4;
          position: absolute;
          top: 5px;
          right: 15px;
          padding: 10px;
          font-size: 1.5rem;
        }

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

        header {
          background: var(--main);
          text-align: center;
        }

        .input-section {
          background: var(--main);
          padding: 15px 0 5px;
          position: sticky;
          top: 0;
          z-index: 100;
        }

        label {
          color: #ffffffc7;
        }

        .input-area {
          display: flex;
          align-items: center;
          gap: 12px;
        }

        .input-text {
          flex: 1;
          display: flex;
          align-items: center;
          background: var(--li);
          border-radius: var(--radius);
          padding: 8px 16px;
          transition: all 0.2s ease;
        }

        .input-text:focus-within {
          border-color: var(--primary);
          background: #fff;
          box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
        }

        input[type="text"] {
          border: none;
          outline: none;
          width: 100%;
          padding: 8px 0;
          font-size: 1rem;
          background: transparent;
          color: var(--text);
        }

        .select-flourish {
          display: flex;
          justify-content: flex-end;
          gap: 12px;
          align-items: center;
          margin-top: 5px;
        }

        .input-area>button {
          height: 48px;
          width: 48px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: var(--li);
          border-radius: var(--radius);
          border: none;
          cursor: pointer;
          font-size: 1.2rem;
          transition: all 0.2s;
        }

        .input-area>button:hover {
          background: var(--bg);
          border-color: var(--muted);
        }

        .select-flourish button {
          padding: 10px;
          border: none;
          border-radius: 30px;
          background: #000;
          font-size: 1.2rem;
          transition: all 0.2s;
          color: #fff;
          cursor: pointer;
        }

        .select-flourish button:hover {
          background: #3639b5;
          /* Slightly darker */
          transform: translateY(-2px);
          /* Lifts up slightly */
          box-shadow: 0 5px 15px rgba(67, 70, 212, 0.3);
        }

        .select-flourish button:active {
          transform: translateY(0);
          transform: scale(0.95);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          background: #2e31a1;
        }

        .select-flourish button:focus {
          box-shadow: 0 0 0 4px rgba(67, 70, 212, 0.4);
        }

        #flourishSelect {
          appearance: none;
          -webkit-appearance: none;
          -moz-appearance: none;
          padding: 10px 38px 10px 16px;
          font-size: 1rem;
          border-radius: 18px;
          background-color: #ffffff;
          color: #000;
          cursor: pointer;
          background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%), linear-gradient(to right, transparent, transparent);
          background-position: calc(100% - 20px) calc(50% - 4px), calc(100% - 14px) calc(50% - 4px), 100% 0;
          background-size: 6px 6px, 6px 6px, 2.5em 2.5em;
          background-repeat: no-repeat;
          transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
        }

        .preppyfont {
          list-style: none;
          padding: 0;
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
          gap: 16px;
        }

        .preppyfont li {
          background: var(--li);
          border-radius: var(--radius);
          border: 1px solid var(--border);
          position: relative;
          overflow: hidden;
          cursor: pointer;

          transition:
            transform 0.15s ease,
            box-shadow 0.15s ease,
            background-color 0.15s ease;
        }

        .preppyfont li:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
        }

        .preppyfont li:active {
          transform: scale(0.96);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) inset;
        }

        .preppyfont li {
          -webkit-tap-highlight-color: transparent;
        }


        .preppyfont i {
          display: block;
          font-style: normal;
          font-size: 0.7rem;
          font-weight: 700;
          color: var(--muted);
          text-transform: uppercase;
          letter-spacing: 0.05em;
          position: absolute;
          bottom: 5px;
          left: 10px;
        }

        .preppyfont p {
          margin: 0;
          padding: 10px 0 25px 10px;
          font-size: 1.5rem;
          color: var(--text);
          word-wrap: break-word;
        }

        #randomcloud {
          margin: 0;
          padding: 0;
          height: 80px;
          display: flex;
          justify-content: space-around;
        }

        #randomcloud li {
          list-style: none;
          position: relative;
          background: transparent;
          border: none;
        }

        #randomcloud p {
          font-size: 25px;
          text-align: center;
        }

        .input-text button {
          border: none;
          background: transparent;
          padding: 10px;
          cursor: pointer;
        }

        .alert {
          position: absolute;
          top: 5px;
          right: 5px;
          background: var(--main);
          color: var(--li);
          padding: 5px 10px;
          border-radius: var(--radius);
          font-size: 0.7rem;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 0.05em;
        }

        .info img {
          width: 100%;
        }

        /* Overlay */
        .overlay {
          position: fixed;
          inset: 0;
          background: rgba(0, 0, 0, 0.4);
          opacity: 0;
          pointer-events: none;
          transition: opacity 0.3s ease;
          z-index: 99;
        }

        .overlay.show {
          opacity: 1;
          pointer-events: auto;
        }

        /* Side Menu */
        .side-menu {
          position: fixed;
          top: 0;
          right: -280px;
          width: 280px;
          height: 100%;
          background: var(--main);
          color: #fff;
          padding: 20px;
          transition: right 0.3s ease;
          z-index: 100;
        }

        .side-menu.open {
          right: 0;
        }

        .side-menu div,
        #footermenu {
          display: flex;
          flex-direction: row;
          gap: 10px;
          flex-wrap: wrap;
          align-content: center;
          margin-top: 15px;

        }

        .side-menu a,
        #footermenu a {
          font-size: 1.1rem;
          padding: 10px;
          border-radius: 10px;
          background: #5255d5;
          color: #fff;
        }

        #footermenu a {
          background: #000;
        }

        .side-menu a:hover,
        #footermenu a:hover {
          background: #4446ba;
        }

        /* Close Button */
        .close-menu {
          background: none;
          border: none;
          color: #fff;
          font-size: 22px;
          cursor: pointer;
          margin-bottom: 20px;
        }

        /* Menu Button */
        .menu-btn {
          font-size: 20px;
          cursor: pointer;
        }

        .loadmore {
          text-align: center;
        }

        .loadmore button {
          padding: 15px 20px;
          border: none;
          background: var(--main);
          color: #fff;
          border-radius: 30px;
          font-size: 1.1rem;
          cursor: pointer;
        }

        #backtotop {
          position: fixed;
          right: 0;
          bottom: 200px;
          border: none;
          background: #444;
          padding: 10px;
          width: 40px;
          height: 40px;
          color: #fff;
          font-size: 1.1rem;
          border-radius: 10px 0 0 10px;
          cursor: pointer;
        }

        /* Responsive Tablet/Mobile */
        @media (max-width: 600px) {
          .input-section {
            position: fixed;
            bottom: 0;
            width: 100%;
            left: 0;
            top: auto;
          }

          .container {
            margin: 0 15px;
          }

          .select-flourish {
            gap: 5px;
          }

          .preppyfont {
            grid-template-columns: 1fr;
          }

          .preppyfont p {
            font-size: 1.1rem;
          }
        }