        @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;500;700;900&display=swap');

        :root {
            --primary: #00ff88;
            --secondary: #0066ff;
            --dark: #0a0e27;
            --darker: #050816;
            --card-bg: rgba(15, 23, 42, 0.85);
            --card-border: rgba(0, 255, 136, 0.3);
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --success: #00ff88;
        }

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

        html {
            font-size: 62.5%;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.15) 0%, transparent 50%);
            animation: bgShift 15s ease infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes bgShift {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
            50% { transform: scale(1.1) rotate(3deg); opacity: 1; }
        }

        .content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            padding: 3rem 2rem;
            min-height: 100vh;
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
        }

        .content-logo {
            animation: fadeInDown 0.8s ease;
        }

        .content-logo img {
            max-width: 450px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.3));
            transition: all 0.3s ease;
        }

        .content-logo img:hover {
            filter: drop-shadow(0 0 50px rgba(0, 255, 136, 0.5));
            transform: scale(1.02);
        }

        .content-status {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .content-item-wrapper {
            background: var(--card-bg);
            backdrop-filter: blur(15px);
            border: 2px solid var(--card-border);
            border-radius: 15px;
            padding: 2rem 2.5rem;
            text-align: center;
            min-width: 180px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .content-item-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            animation: slideLight 3s infinite;
        }

        @keyframes slideLight {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }

        .content-item-wrapper:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
        }

        .status-label {
            font-size: 1.4rem;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
            letter-spacing: 1.5px;
        }

        .status-dynamic {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
        }

        #status {
            color: var(--primary);
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }

        .content-code {
            background: var(--card-bg);
            backdrop-filter: blur(15px);
            border: 2px solid var(--card-border);
            border-radius: 20px;
            padding: 4rem 3rem;
            width: 100%;
            max-width: 900px;
            animation: fadeInUp 0.8s ease 0.4s both;
            position: relative;
            overflow: hidden;
        }

        .content-code::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .code {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 2rem 0;
        }

        .a-code {
            display: inline-block;
            padding: 1.5rem 2rem;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 255, 136, 0.2));
            border: 2px solid var(--card-border);
            color: var(--primary);
            font-size: 2.2rem;
            font-weight: 700;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 3px;
            border-radius: 12px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .a-code::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(0, 255, 136, 0.4), transparent);
            transform: translate(-50%, -50%);
            transition: width 0.5s ease, height 0.5s ease;
            border-radius: 50%;
        }

        .a-code:hover::before {
            width: 200%;
            height: 200%;
        }

        .a-code:hover {
            border-color: var(--primary);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
        }

        .loader {
            visibility: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 2rem 0;
        }

        .loader img {
            max-width: 100%;
            filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
        }

        .content-btn, .content-copy {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            width: 100%;
            max-width: 400px;
        }

        .content-copy {
            display: none;
        }

        .generate-btn, .copy-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--dark);
            font-size: 2rem;
            font-weight: 700;
            padding: 1.5rem 4rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Rajdhani', sans-serif;
            transition: all 0.3s ease;
            box-shadow: 0 5px 25px rgba(0, 255, 136, 0.4);
            position: relative;
            overflow: hidden;
        }

        .generate-btn::before, .copy-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .generate-btn:hover::before, .copy-btn:hover::before {
            width: 300%;
            height: 300%;
        }

        .generate-btn:hover, .copy-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 35px rgba(0, 255, 136, 0.6);
        }

        .generate-btn:active, .copy-btn:active {
            transform: translateY(1px);
        }

        .text-hr {
            width: 100%;
            border: none;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
            position: relative;
            margin: 1rem 0;
        }

        .text-hr::before {
            content: '§';
            position: absolute;
            top: -2.5rem;
            left: 50%;
            transform: translateX(-50%);
            padding: 0 1.5rem;
            background-color: var(--darker);
            color: var(--primary);
            font-size: 4rem;
            text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
        }

        .content-text {
            text-align: center;
            padding: 3rem;
            background: var(--card-bg);
            backdrop-filter: blur(15px);
            border: 2px solid var(--card-border);
            border-radius: 20px;
            width: 100%;
            max-width: 900px;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .text-title {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .text-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -8px;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.4s ease, left 0.4s ease;
        }

        .text-title:hover::after {
            width: 100%;
            left: 0;
        }

        .text-paragraph {
            font-size: 1.8rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* SEO Content Section */
        .seo-content {
            background: var(--card-bg);
            backdrop-filter: blur(15px);
            border: 2px solid var(--card-border);
            border-radius: 20px;
            padding: 3rem;
            width: 100%;
            max-width: 900px;
            animation: fadeInUp 0.8s ease 0.7s both;
        }

        .seo-content h2 {
            font-size: 2.4rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .seo-content h3 {
            font-size: 2rem;
            color: var(--text-primary);
            margin: 2rem 0 1rem 0;
            font-weight: 600;
        }

        .seo-content p {
            font-size: 1.6rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .seo-content ul {
            list-style: none;
            padding-left: 0;
            margin: 1.5rem 0;
        }

        .seo-content ul li {
            font-size: 1.6rem;
            color: var(--text-secondary);
            padding: 0.8rem 0;
            padding-left: 2.5rem;
            position: relative;
        }

        .seo-content ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.8rem;
        }

        .chat-container {
            width: 100%;
            max-width: 900px;
            background: var(--card-bg);
            backdrop-filter: blur(15px);
            border: 2px solid var(--card-border);
            border-radius: 20px;
            overflow: hidden;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .chat-header {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 255, 136, 0.3));
            padding: 2rem;
            text-align: center;
            border-bottom: 2px solid var(--card-border);
        }

        .chat-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .chat-window {
            padding: 2.5rem;
            height: 450px;
            overflow-y: auto;
            background: rgba(0, 0, 0, 0.3);
        }

        .chat-window::-webkit-scrollbar {
            width: 10px;
        }

        .chat-window::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .chat-window::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
            transition: background 0.3s ease;
        }

        .chat-window::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }

        .message {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .message.sent {
            flex-direction: row-reverse;
        }

        .avatar {
            width: 4.5rem;
            height: 4.5rem;
            border-radius: 50%;
            border: 2px solid var(--primary);
            flex-shrink: 0;
        }

        .message-content {
            max-width: 70%;
            background: rgba(255, 255, 255, 0.08);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .message.sent .message-content {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 255, 136, 0.2));
            border: 1px solid var(--card-border);
        }

        .message-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
            gap: 1rem;
        }

        .username {
            font-weight: 700;
            color: var(--primary);
        }

        .timestamp {
            color: var(--text-secondary);
        }

        .message-content p {
            font-size: 1.7rem;
            color: var(--text-primary);
            line-height: 1.6;
        }

        .chat-input {
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            border-top: 2px solid var(--card-border);
            background: rgba(0, 0, 0, 0.2);
        }

        .chat-input input {
            flex: 1;
            padding: 1.5rem 2rem;
            border: 2px solid var(--card-border);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            font-size: 1.6rem;
            font-family: 'Rajdhani', sans-serif;
            outline: none;
            transition: all 0.3s ease;
        }

        .chat-input input:focus {
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
        }

        .chat-input button {
            padding: 1.5rem 3rem;
            background: var(--primary);
            color: var(--dark);
            border: none;
            border-radius: 50px;
            font-size: 1.6rem;
            font-weight: 700;
            font-family: 'Rajdhani', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .chat-input button:hover {
            background: var(--secondary);
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
        }

        footer {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            color: var(--text-secondary);
            text-align: center;
            padding: 2rem;
            width: 100%;
            border-top: 2px solid var(--card-border);
        }

        footer p {
            margin: 0;
            font-size: 1.5rem;
        }

        footer span#year {
            font-weight: 700;
            color: var(--primary);
        }

        .animated {
            animation-duration: 1s;
            animation-fill-mode: both;
        }

        .bounceIn {
            animation-name: bounceIn;
            animation-duration: 0.75s;
        }

        @keyframes bounceIn {
            from, 20%, 40%, 60%, 80%, to {
                animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            }
            0% {
                opacity: 0;
                transform: scale3d(0.3, 0.3, 0.3);
            }
            20% {
                transform: scale3d(1.1, 1.1, 1.1);
            }
            40% {
                transform: scale3d(0.9, 0.9, 0.9);
            }
            60% {
                opacity: 1;
                transform: scale3d(1.03, 1.03, 1.03);
            }
            80% {
                transform: scale3d(0.97, 0.97, 0.97);
            }
            to {
                opacity: 1;
                transform: scale3d(1, 1, 1);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animation-delay-400 {
            animation-delay: 0.4s;
        }

        .animation-delay-600 {
            animation-delay: 0.6s;
        }

        .animation-delay-800 {
            animation-delay: 0.8s;
        }

        @media (max-width: 1024px) {
            html {
                font-size: 58%;
            }

            .content {
                padding: 2.5rem 1.5rem;
            }

            .content-logo img {
                max-width: 350px;
            }

            .content-code {
                padding: 3rem 2rem;
            }

            .content-text, .seo-content {
                padding: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            html {
                font-size: 55%;
            }

            .content {
                padding: 2rem 1.5rem;
                gap: 2.5rem;
            }

            .content-logo img {
                max-width: 280px;
            }

            .content-status {
                gap: 1.2rem;
            }

            .content-item-wrapper {
                min-width: 150px;
                padding: 1.8rem 2rem;
            }

            .status-label {
                font-size: 1.3rem;
            }

            .status-dynamic {
                font-size: 2rem;
            }

            .content-code {
                padding: 3rem 2rem;
            }

            .code {
                gap: 0.8rem;
            }

            .a-code {
                padding: 1.3rem 1.8rem;
                font-size: 2rem;
                letter-spacing: 2px;
            }

            .generate-btn, .copy-btn {
                padding: 1.3rem 3.5rem;
                font-size: 1.9rem;
            }

            .text-title {
                font-size: 2.4rem;
            }

            .text-paragraph {
                font-size: 1.7rem;
            }

            .chat-header h2 {
                font-size: 2rem;
            }

            .chat-window {
                height: 380px;
                padding: 2rem;
            }

            .message-content {
                max-width: 80%;
            }

            .avatar {
                width: 4rem;
                height: 4rem;
            }

            .chat-input {
                padding: 1.5rem;
                gap: 1rem;
            }

            .chat-input input {
                font-size: 1.5rem;
            }

            .chat-input button {
                font-size: 1.5rem;
                padding: 1.3rem 2.5rem;
            }
        }

        @media (max-width: 480px) {
            html {
                font-size: 50%;
            }

            .content {
                padding: 1.5rem 1rem;
                gap: 2rem;
            }

            .content-logo img {
                max-width: 220px;
            }

            .content-status {
                gap: 1rem;
                width: 100%;
            }

            .content-item-wrapper {
                min-width: 120px;
                padding: 1.5rem 1.5rem;
                flex: 1;
            }

            .status-label {
                font-size: 1.2rem;
                margin-bottom: 0.6rem;
            }

            .status-dynamic {
                font-size: 1.8rem;
            }

            .content-code {
                padding: 2.5rem 1.5rem;
            }

            .code {
                gap: 0.6rem;
                flex-direction: column;
            }

            .a-code {
                padding: 1.2rem 2rem;
                font-size: 1.9rem;
                letter-spacing: 2px;
                width: 100%;
                text-align: center;
            }

            .generate-btn, .copy-btn {
                padding: 1.2rem 3rem;
                font-size: 1.8rem;
                width: 100%;
            }

            .text-hr::before {
                font-size: 3.5rem;
                top: -2.2rem;
            }

            .content-text, .seo-content {
                padding: 2rem 1.5rem;
            }

            .text-title {
                font-size: 2.2rem;
                margin-bottom: 1.2rem;
            }

            .text-paragraph {
                font-size: 1.6rem;
                line-height: 1.7;
            }

            .chat-container {
                width: 100%;
            }

            .chat-header {
                padding: 1.5rem;
            }

            .chat-header h2 {
                font-size: 1.8rem;
            }

            .chat-window {
            padding: 2.5rem;
            height: 450px;
            overflow-y: auto;
            background: rgba(0, 0, 0, 0.3);
        }

        .chat-window::-webkit-scrollbar {
            width: 10px;
        }

        .chat-window::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .chat-window::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
            transition: background 0.3s ease;
        }

        .chat-window::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }

        .message {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .message.sent {
            flex-direction: row-reverse;
        }

        .avatar {
            width: 4.5rem;
            height: 4.5rem;
            border-radius: 50%;
            border: 2px solid var(--primary);
            flex-shrink: 0;
        }

        .message-content {
            max-width: 70%;
            background: rgba(255, 255, 255, 0.08);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .message.sent .message-content {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 255, 136, 0.2));
            border: 1px solid var(--card-border);
        }

        .message-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
            gap: 1rem;
        }

        .username {
            font-weight: 700;
            color: var(--primary);
        }

        .timestamp {
            color: var(--text-secondary);
        }

        .message-content p {
            font-size: 1.7rem;
            color: var(--text-primary);
            line-height: 1.6;
        }

        .chat-input {
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            border-top: 2px solid var(--card-border);
            background: rgba(0, 0, 0, 0.2);
        }

        .chat-input input {
            flex: 1;
            padding: 1.5rem 2rem;
            border: 2px solid var(--card-border);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            font-size: 1.6rem;
            font-family: 'Rajdhani', sans-serif;
            outline: none;
            transition: all 0.3s ease;
        }

        .chat-input input:focus {
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
        }

        .chat-input button {
            padding: 1.5rem 3rem;
            background: var(--primary);
            color: var(--dark);
            border: none;
            border-radius: 50px;
            font-size: 1.6rem;
            font-weight: 700;
            font-family: 'Rajdhani', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .chat-input button:hover {
            background: var(--secondary);
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
        }

        footer {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            color: var(--text-secondary);
            text-align: center;
            padding: 2rem;
            width: 100%;
            border-top: 2px solid var(--card-border);
        }

        footer p {
            margin: 0;
            font-size: 1.5rem;
        }

        footer span#year {
            font-weight: 700;
            color: var(--primary);
        }

        .animated {
            animation-duration: 1s;
            animation-fill-mode: both;
        }

        .bounceIn {
            animation-name: bounceIn;
            animation-duration: 0.75s;
        }

        @keyframes bounceIn {
            from, 20%, 40%, 60%, 80%, to {
                animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            }
            0% {
                opacity: 0;
                transform: scale3d(0.3, 0.3, 0.3);
            }
            20% {
                transform: scale3d(1.1, 1.1, 1.1);
            }
            40% {
                transform: scale3d(0.9, 0.9, 0.9);
            }
            60% {
                opacity: 1;
                transform: scale3d(1.03, 1.03, 1.03);
            }
            80% {
                transform: scale3d(0.97, 0.97, 0.97);
            }
            to {
                opacity: 1;
                transform: scale3d(1, 1, 1);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animation-delay-400 {
            animation-delay: 0.4s;
        }

        .animation-delay-600 {
            animation-delay: 0.6s;
        }

        .animation-delay-800 {
            animation-delay: 0.8s;
        }

        @media (max-width: 1024px) {
            html {
                font-size: 58%;
            }

            .content {
                padding: 2.5rem 1.5rem;
            }

            .content-logo img {
                max-width: 350px;
            }

            .content-code {
                padding: 3rem 2rem;
            }

            .content-text, .seo-content {
                padding: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            html {
                font-size: 55%;
            }

            .content {
                padding: 2rem 1.5rem;
                gap: 2.5rem;
            }

            .content-logo img {
                max-width: 280px;
            }

            .content-status {
                gap: 1.2rem;
            }

            .content-item-wrapper {
                min-width: 150px;
                padding: 1.8rem 2rem;
            }

            .status-label {
                font-size: 1.3rem;
            }

            .status-dynamic {
                font-size: 2rem;
            }

            .content-code {
                padding: 3rem 2rem;
            }

            .code {
                gap: 0.8rem;
            }

            .a-code {
                padding: 1.3rem 1.8rem;
                font-size: 2rem;
                letter-spacing: 2px;
            }

            .generate-btn, .copy-btn {
                padding: 1.3rem 3.5rem;
                font-size: 1.9rem;
            }

            .text-title {
                font-size: 2.4rem;
            }

            .text-paragraph {
                font-size: 1.7rem;
            }

            .chat-header h2 {
                font-size: 2rem;
            }

            .chat-window {
                height: 320px;
                padding: 1.5rem;
            }

            .message {
                gap: 1rem;
                margin-bottom: 1.5rem;
            }

            .avatar {
                width: 3.5rem;
                height: 3.5rem;
            }

            .message-content {
                max-width: 75%;
                padding: 1.2rem;
            }

            .message-info {
                font-size: 1.2rem;
                flex-direction: column;
                gap: 0.3rem;
            }

            .message-content p {
                font-size: 1.5rem;
            }

            .chat-input {
                flex-direction: column;
                padding: 1.5rem;
                gap: 1rem;
            }

            .chat-input input {
                font-size: 1.5rem;
                padding: 1.3rem 1.8rem;
            }

            .chat-input button {
                width: 100%;
                font-size: 1.5rem;
                padding: 1.3rem 2rem;
            }

            footer p {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 360px) {
            html {
                font-size: 48%;
            }

            .content {
                padding: 1rem 0.8rem;
                gap: 1.8rem;
            }

            .content-logo img {
                max-width: 180px;
            }

            .content-status {
                flex-direction: column;
                width: 100%;
            }

            .content-item-wrapper {
                width: 100%;
                min-width: unset;
            }

            .content-code {
                padding: 2rem 1.2rem;
            }

            .a-code {
                font-size: 1.8rem;
                padding: 1rem 1.5rem;
            }

            .generate-btn, .copy-btn {
                font-size: 1.7rem;
                padding: 1.1rem 2.5rem;
            }

            .text-title {
                font-size: 2rem;
            }

            .chat-window {
                height: 280px;
            }

            .message-content {
                max-width: 80%;
            }
        }
    }