        *, *::before, *::after {
            box-sizing: border-box;
        }
        body { 
            margin: 0; 
            overflow-x: hidden;
            overflow-y: auto;
            background-color: black;
            -webkit-overflow-scrolling: touch;
            position: relative;
            height: 100%;
            scroll-behavior: smooth;
            font-family: 'Space Mono', monospace;
        }
        @keyframes sway {
            0% {
                transform: rotate(0deg);
            }
            25% {
                transform: rotate(1deg);
            }
            75% {
                transform: rotate(-1deg);
            }
            100% {
                transform: rotate(0deg);
            }
        }
        @keyframes sway2 {
            0% {
                transform: rotate(0deg);
            }
            35% {
                transform: rotate(-1deg);
            }
            65% {
                transform: rotate(1deg);
            }
            100% {
                transform: rotate(0deg);
            }
        }
        #top-content {
            position: absolute;
            top: 69px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            pointer-events: auto;
            z-index: 1000;
        }
        #logo {
            font-family: 'Gaegu', cursive;
            font-size: 72px;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin: 0;
            text-align: center;
            letter-spacing: 2px;
        }
        #intro-text {
            color: #ffffff;
            font-family: 'Space Mono', monospace;
            font-size: 22px;
            text-align: center;
            max-width: 860px;
            width: 100%;
            line-height: 1.4;
            padding: 0 20px;
            box-sizing: border-box;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.75);
            margin: 0 0 7px 0;
        }
        @media (max-width: 999px) {
            #logo {
                font-size: 48px;
                letter-spacing: 1px;
            }
            .bottom-box {
                font-size: 14px;
                padding: 8px 16px;
            }
            #address-box {
                font-size: 14px;
                padding: 6px 12px;
                width: 100%;
                text-align: center;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            #address-box #copied-indicator {
                position: absolute;
                right: 50%;
                top: -25px;
                transform: translateX(50%);
                margin-left: 0;
                left: auto;
            }
            #member-button {
                font-size: 15px !important;
                padding: 8px 15px !important;
                max-width: inherit;
                white-space: nowrap;
                line-height: 1.2;
            }
            #intro-text {
                font-size: 18px;
                padding: 0 15px;
                line-height: 1.5;
                margin-bottom: 0 !important;
            }
            #address-title {
                font-size: 14px;
                bottom: calc(20px + 85px);
                left: 50%;
                transform: translateX(-50%);
                text-align: center;
            }
            #bottom-boxes {
                flex-wrap: wrap;
                justify-content: center;
                bottom: 130px !important;
                flex-direction: column;
                gap: 15px;
                padding: 0 20px;
                align-items: center;
                width: 100%;
                margin: 0 auto;
                z-index: 1001;
                pointer-events: auto;
            }
            #address-box {
                margin-bottom: 0px !important;
                pointer-events: auto;
                z-index: 1001;
            }
            #bottom-boxes .buttons {
                width: 100%;
                justify-content: center;
                pointer-events: auto;
                z-index: 1001;
            }
            .bottom-box.link-box {
                min-width: 60px;
                text-align: center;
                pointer-events: auto;
            }
            #scroll-button {
                position: fixed;
                top: 20px;
                left: 20px !important;
                background: rgba(0, 0, 0, 0.8);
                border: 1px solid rgba(255, 255, 255, 0.2);
                color: #f30;
                padding: 8px 16px;
                font-size: 13px;
                border-radius: 4px;
                font-family: 'Space Mono', monospace;
                cursor: pointer;
                z-index: 1000;
                transition: all 0.2s ease-in-out;
                box-shadow: 0 0 12px rgba(0,0,0,0.5);
                outline: none;
            }
            @media (max-width: 999px) {
                #scroll-button {
                    left: 20px;
                    top: 20px;
                    z-index: 1000;
                }
            }
            @media (max-width: 700px) {
                #scroll-button {
                    font-size: 12px;
                    padding: 7px 12px;
                }
            }
            #generator form > div {
                flex-direction: column !important;
                gap: 8px !important;
                display: flex !important;
            }
            #generator form > div h3 {
                border-radius: 12px 12px 0 0 !important;
                width: 100% !important;
                justify-content: flex-start !important;
                display: flex !important;
                background: transparent !important;
            }
            #generator form > div textarea {
                border-radius: 12px !important;
                border: 3px solid #444 !important;
                margin-right: 0 !important;
                width: 100% !important;
            }
            #generator form > div button {
                width: 100% !important;
            }
            #generator-link {
                white-space: nowrap !important;
                font-size: 15px !important;
                bottom: 30% !important;
            }
            #content-section h2 {
                font-size: 20px !important;
            }
            #content-section p {
                font-size: 14px !important;
            }
        }
        #bottom-boxes {
            position: absolute;
            bottom: 20px;
            left: 0;
            z-index: 12;
            display: flex;
            pointer-events: auto;
        }

        #bottom-boxes .buttons {
            display: flex;
            gap: 10px;
            align-items: center;
            pointer-events: auto;
        }

        @media (min-width: 1000px) {
            #bottom-boxes {
                display: flex;
                gap: 10px;
                padding: 0 15px;
                width: 100%;
                box-sizing: border-box;
                justify-content: space-between;
                align-items: center;
                pointer-events: auto;
                z-index: 1001;
            }
            #address-box {
                display: inline-block;
                width: fit-content;
                max-width: none;
                position: relative;
            }
            #copied-indicator {
                position: absolute;
                left: 100%;
                top: 50%;
                transform: translateY(-50%);
                margin-left: 8px;
            }
        }

        .bottom-box {
            background-color: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 10px 20px;
            border-radius: 4px;
            font-family: 'Space Mono', monospace;
            color: #fff;
            font-size: 15px;
            letter-spacing: 0.5px;
            white-space: nowrap;
            position: relative;
            pointer-events: auto;
        }

        .bottom-box.link-box {
            text-decoration: none;
            transition: all 0.2s ease-in-out;
            cursor: pointer;
            pointer-events: auto;
        }

        .bottom-box.link-box:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.4);
        }

        #address-title {
            position: absolute;
            bottom: calc(20px + 54px);
            left: 15px;
            color: #f30;
            font-family: 'Space Mono', monospace;
            font-size: 16px;
            text-align: left;
            z-index: 3;
            white-space: nowrap;
            letter-spacing: 0px;
        }

        #address-box {
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            position: relative;
        }

        #address-box:hover {
            background: rgba(255, 0, 0, 0.2);
            border-color: rgba(255, 0, 0, 0.4);
        }

        #address-box::after {
            content: 'copied';
            position: absolute;
            right: -80px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            color: #4CAF50;
            font-size: 0.8em;
            text-transform: lowercase;
            letter-spacing: 1px;
            white-space: nowrap;
            z-index: 1002;
        }

        #address-box.copied::after {
            opacity: 1;
        }

        #background {
            position: fixed;
            top: 0px;
            left: 0;
            bottom: 0px;
            width: 100%;
            z-index: -1;
        }

        #background img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
            z-index: 0;
        }

        #background img.active {
            opacity: 1;
        }

        #default-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000 url('../bg.jpg') no-repeat center center;
            background-size: cover;
            z-index: 0;
        }

        canvas { 
            display: block;
            position: relative;
            z-index: 1;
            top: 0;
            left: 0;
        }

        #loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease-out;
        }

        #loading-screen.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        #loading-text {
            color: #f30;
            font-family: monospace;
            font-size: 18px;
            margin-bottom: 20px;
        }

        #loading-progress {
            width: 200px;
            height: 4px;
            background: rgba(255, 165, 0, 0.2);
            border-radius: 2px;
            overflow: hidden;
        }

        #loading-bar {
            width: 0%;
            height: 100%;
            background: #f30;
            transition: width 0.3s ease-out;
        }

        @media (min-width: 1000px) {
            .bottom-box {
                font-size: 18px;
                padding: 12px 15px;
            }
            #address-box {
                font-size: 18px;
                padding: 10px 15px;
            }
        }

        #top-content #member-button {
            background-color: #f30;
            border: 2px solid #f30;
            color: #ffffff;
            box-shadow: 0 0 12px rgba(0,0,0,0.5);
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            text-align: center;
            z-index: 1000;
            pointer-events: auto;
            padding: 15px 30px;
            font-size: 24px;
            width: auto;
            white-space: nowrap;
            position: relative;
        }

        #top-content #member-button:hover {
            background-color: #ffffff !important;
            color: #f30 !important;
            transform: scale(1.05);
        }

        @media (min-width: 1000px) {
            #top-content #member-button {
                padding: 15px 30px;
                font-size: 24px;
                width: auto;
                white-space: nowrap;
            }
        }

        #canvas-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            pointer-events: none;
        }
        #canvas-container canvas {
            cursor: pointer;
            pointer-events: auto;
        }
        #content-section {
            position: relative;
            z-index: 2;
            margin-top: 100vh;
            background: #000000;
            color: #ffffff;
            padding: 40px 20px;
            font-family: monospace;
            line-height: 1.6;
        }
        #content-section h2 {
            color: #f30;
            margin-bottom: 20px;
            font-size: 28px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }
        #content-section #generator h2 em {
            color: #555;
            font-weight: 400;
            font-size: 16px;
        }
        #content-section p {
            margin-bottom: 20px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            font-size: 16px;
        }
        #content-section p a {
            color: #f30;
            text-decoration: underline;
            font-weight: bold;
        }
        #music-toggle {
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #f30;
            padding: 8px 16px;
            font-size: 13px;
            border-radius: 4px;
            font-family: 'Space Mono', monospace;
            cursor: pointer;
            z-index: 1000;
            transition: all 0.2s ease-in-out;
        }
        #music-toggle:hover {
            background: rgba(255, 0, 0, 0.2);
            border-color: rgba(255, 0, 0, 0.4);
        }
        #scroll-button {
            position: fixed;
            left: 20px;
            top: 20px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #f30;
            padding: 8px 16px;
            font-size: 13px;
            border-radius: 4px;
            font-family: 'Space Mono', monospace;
            cursor: pointer;
            z-index: 1000;
            transition: all 0.2s ease-in-out;
            box-shadow: 0 0 12px rgba(0,0,0,0.5);
            outline: none;
        }
        #scroll-button:hover {
            background: rgba(255, 165, 0, 0.2);
            border-color: rgba(255, 165, 0, 0.4);
        }
        @media (max-width: 700px) {
            #scroll-button {
                font-size: 12px;
                padding: 7px 12px;
            }
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
            z-index: 0;
        }
        @media (max-width: 999px) {
            .slide {
                background-image: var(--mobile-bg);
            }
        }
        @media (min-width: 1000px) {
            .slide {
                background-image: var(--desktop-bg);
            }
        }
        .address-container {
            position: relative;
            width: 100%;
        }

        #copied-indicator {
            position: absolute;
            right: 50%;
            top: -25px;
            transform: translateX(50%);
            background: rgba(0, 0, 0, 0.8);
            padding: 4px 8px;
            border-radius: 4px;
            color: #4CAF50;
            font-size: 12px;
            text-transform: lowercase;
            letter-spacing: 1px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1002;
            pointer-events: none;
            font-family: monospace;
        }

        #copied-indicator.visible {
            opacity: 1;
        }

        @media (min-width: 1000px) {
            #copied-indicator {
                right: -80px;
                top: 50%;
                transform: translateY(-50%);
            }
        }

        #generator {
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }
        .content-region {
            padding: 32px 0;
        }

        @media (max-width: 1000px) {
            .content-region {
                padding: 50px 0;
            }
        }

        #footer {
            background: #000;
            width: 100%;
            color: #fff;
            position: relative;
            z-index: 2;
        }
        #footer .content-region {
            display: flex;
            justify-content: center;
        }
        #footer .content-region p {
            max-width: 650px;
            margin: -2px auto 0 auto;
            font-family: 'Space Mono', monospace;
            text-align: left;
        }
        #meme-canvas {
            aspect-ratio: 1 / 1;
            width: 650px;
            height: auto;
            max-width: 650px;
            display: block;
            border-radius: 16px;
            background: #222;
            margin: 0 auto;
        }
        .meme-action-row {
            margin-top: 12px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 0;
            max-width: 650px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
        .meme-action-left {
            display: flex;
            flex-direction: row;
            gap: 6px;
            align-items: center;
        }
        .meme-action-right {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-left: auto;
        }
        .meme-action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            min-width: 40px;
            padding: 5px 15px;
            font-family: 'Space Mono', monospace;
            font-size: 15px;
            background: #444;
            color: #fff;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            margin: 0;
            text-decoration: none;
            transition: background 0.2s;
            box-sizing: border-box;
        }
        .meme-action-btn svg {
            height: 22px;
            width: 22px;
            display: block;
            fill: currentColor;
        }
        .meme-action-btn.meme-action-x {
            background: #f30;
            color: #fff;
        }
        @media (max-width: 999px) {
            .meme-action-row {
                flex-direction: column;
                gap: 10px;
                align-items: stretch;
            }
            .meme-action-left, .meme-action-right {
                flex-direction: column;
                gap: 10px;
                width: 100%;
                margin-left: 0;
                align-items: stretch;
            }
            .meme-action-btn {
                width: 100%;
                text-align: center;
            }
        }
        .meme-helper-text {
            font-style: normal;
            color: #555;
            font-size: 14px;
            margin-top: 4px;
            font-family: 'Space Mono', monospace;
            white-space: nowrap;
            display: block;
            margin: 12px 0 16px 0;
        }
        .meme-helper-text span {
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            padding-top: 2px;
            padding-bottom: 2px;
            padding-left: 9px;
            display: block;
            position: relative;
            border: 1px solid #222;
            border-radius: 3px;
            text-overflow: ellipsis;
            overflow: hidden;
        }
        .meme-helper-text span:hover {
            background: rgba(255, 165, 0, 0.1);
        }
        .meme-helper-text span.active {
            background: rgba(255, 165, 0, 0.2);
            color: #f30 !important;
            border-color: transparent !important;
            padding-right: 24px;
        }
        .meme-helper-text span.active::after {
            content: '×';
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16px;
            line-height: 1;
            color: #f30;
        }
        @media (max-width: 999px) {
            .meme-helper-text {
                white-space: normal;
                display: block;
            }
        }
        .wojack-row {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 16px;
            justify-content: space-between;
            max-width: 650px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
        .wojack-img {
            width: 30%;
            min-width: 48px;
            max-width: 280px;
            height: auto;
            display: block;
            border-radius: 8px;
            margin-left: 10px;
            flex-shrink: 0;
        }
        .wojack-row p {
            flex: 1 1 0;
            margin: 0;
        }
        @media (max-width: 999px) {
            .wojack-row {
                flex-direction: column !important;
                align-items: center !important;
            }
            .wojack-img {
                max-width: 100% !important;
                width: auto !important;
                min-width: 0 !important;
                height: auto !important;
                display: block !important;
            }
        }
        @media (min-width: 1000px) {
            .wojack-row {
                flex-direction: row;
                gap: 10px;
                max-width: 100%;
            }
            /* Remove fixed width for .wojack-img on desktop */
            .wojack-img {
                /* width: 32%; */
                /* max-width: 280px; */
                /* min-width: 48px; */
            }
        }
        .wojack-text-col {
            flex: 1 1 0;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .wojack-text-col h2 {
            font-size: 28px;
            color: #f30;
            margin: 0 0 8px 0;
            font-family: 'Space Mono', monospace;
            text-align: left;
        }
        .wojack-text-col p {
            font-size: 16px;
            color: #fff;
            font-family: 'Space Mono', monospace;
            margin: 0;
            text-align: left;
        }
        @media (max-width: 600px) {
            .wojack-row {
                flex-direction: column;
                align-items: flex-start;
            }
            .wojack-img {
                align-self: flex-end;
                margin-top: 10px;
            }
            .wojack-text-col h2 {
                font-size: 20px;
            }
            .wojack-text-col p {
                font-size: 14px;
            }
        }
        @media (max-width: 600px) {
            .wojack-img {
                max-width: 100% !important;
                width: auto !important;
                min-width: 0 !important;
            }
        }
        h1, h2, h3, h4, h5, h6, button, input, textarea, select, a, p, span, div, label, th, td, li, ul, ol, pre, code {
            font-family: 'Space Mono', monospace !important;
        }
        .font-size-panel {
            position: absolute;
            top: 40px;
            right: -125px;
            margin-left: 0px;
            width: 123px;
            background: #111;
            border-radius: 8px;
            box-shadow: 0 0 8px #000a;
            padding: 12px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 10;
        }
        .control-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        @media (max-width: 1000px) {
            .font-size-panel {
                position: static !important;
                width: 100% !important;
                margin: 0 0 10px 0 !important;
                display: flex !important;
                flex-direction: row !important;
                justify-content: center !important;
                align-items: flex-start !important;
                gap: 40px !important;
                box-sizing: border-box;
                padding: 15px !important;
            }
            .control-group {
                flex: 0 0 auto !important;
                align-items: flex-start !important;
            }
            .font-size-label {
                margin-bottom: 0 !important;
                margin-right: 12px;
                white-space: nowrap;
            }
            .font-size-controls {
                margin-right: 0;
            }
            #align-panel {
                margin-top: 0 !important;
                width: auto !important;
                padding: 0 !important;
                background: none !important;
                box-shadow: none !important;
            }
            .mood-grid {
                display: flex !important;
                flex-wrap: wrap !important;
                gap: 6px !important;
                justify-content: flex-start !important;
                max-width: 100% !important;
            }
            .mood-btn {
                flex: 0 0 auto !important;
            }
            #mood-panel {
                margin-top: 0 !important;
                width: auto !important;
            }
            #mood-panel > div:first-child {
                margin-bottom: 4px !important;
                text-align: left !important;
                width: 100% !important;
            }
            .control-group > div:first-child {
                text-align: left !important;
                width: 100% !important;
            }
        }
        @media (max-width: 700px) {
            .mood-grid {
                max-width: 110px !important;
            }
        }
        @media (max-width: 600px) {
            .mood-grid {
                max-width: 90px !important;
            }
        }
        @media (max-width: 550px) {
            .font-size-panel {
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 18px !important;
            }
            .row-controls {
                display: flex !important;
                flex-direction: row !important;
                gap: 30px !important;
                width: 100%;
            }
            .row-controls .control-group {
                flex: 1 1 0 !important;
                width: 50% !important;
            }
            .control-group {
                width: 100% !important;
            }
            .mood-grid {
                max-width: 100% !important;
            }
        }
        @media (max-width: 450px) {
            .font-size-panel {
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 18px !important;
            }
            .control-group {
                width: 100% !important;
            }
        }
        .top-buttons {
            position: fixed;
            top: 20px;
            right: 20px;
            display: flex;
            flex-direction: row;
            gap: 15px;
            z-index: 1000;
        }
        #generate-top, #music-toggle {
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #f30;
            padding: 8px 16px;
            font-size: 13px;
            border-radius: 4px;
            font-family: 'Space Mono', monospace;
            cursor: pointer;
            z-index: 1000;
            transition: all 0.2s ease-in-out;
            box-shadow: 0 0 12px rgba(0,0,0,0.5);
            outline: none;
        }
        #generate-top:hover, #music-toggle:hover {
            background: rgba(255, 0, 0, 0.2);
            border-color: rgba(255, 0, 0, 0.4);
        }
        #generate-top {
            background: rgba(0,0,0,0.9);
            border: 1px solid #f30;
        }
        @media (max-width: 700px) {
            .top-buttons {
                gap: 6px;
            }
            #generate-top, #music-toggle {
                font-size: 12px;
                padding: 7px 12px;
            }
        }
        #meme-preview-container {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            margin-left: auto;
            margin-right: auto;
            max-width: 800px;
            overflow: visible;
            border-radius: 0 !important;
        }
        .meme-preview-container {
            border-radius: 0 !important;
        }
        #custom-bg-preview {
            display: none;
            position: relative;
            text-align: right;
            min-width: 0;
            flex-shrink: 0;
            max-height: 62px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #custom-bg-preview img {
            max-height: 62px;
            border-radius: 4px;
        }
        #custom-bg-preview button {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 24px;
            height: 24px;
            border-radius: 12px;
            border: none;
            background: #f30;
            color: #000;
            cursor: pointer;
            font-size: 16px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            z-index: 2;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        }
        /* Mood selector styles */
        .mood-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
            width: 100%;
        }
        .mood-btn {
            width: 32px;
            height: 32px;
            font-size: 22px;
            border: 1px solid #333;
            border-radius: 6px;
            background: #222;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            padding: 0;
            transition: border-color 0.2s;
        }
        .mood-btn.active {
            border: 1px solid #f30 !important;
        }
        @media (max-width: 600px) {
            .mood-grid {
                max-width: 100% !important;
            }
        }
        @media (min-width: 1000px) {
            .content-region {
                max-width: 650px;
                margin-left: auto;
                margin-right: auto;
                width: 100%;
            }
            .font-size-panel .control-group {
                margin-top: 12px;
            }

            .font-size-panel .control-group:nth-of-type(1) {
                margin-top: 0px;
            }
        }
        @media (max-width: 700px) {
            #footer .content-region p {
                padding-left: 10px;
                padding-right: 10px;
            }
        }
        #ai-magic-btn {
            transition: all 0.2s ease-in-out;
            border: 2px solid white;
        }
        #ai-magic-btn:hover {
          border: 2px solid #f30 !important;
          background: #888;
        }
        .meme-helper-text span {
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            padding: 3px 5px;
            display: block;
            position: relative;
        }
        .meme-helper-text span:hover {
            background: rgba(255, 165, 0, 0.1);
        }
        .meme-helper-text span.active {
            background: rgba(255, 165, 0, 0.2);
            color: #f30 !important;
            border-color: transparent !important;
            padding-right: 24px;
        }
        .meme-helper-text span.active::after {
            content: '×';
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16px;
            line-height: 1;
            color: #f30;
        }