
        :root {
            --primary: #6e45e2;
            --secondary: #88d3ce;
            --background: #121212;
            --text: #ffffff;
            --accent: #ff6b6b;
            --card-bg: rgba(30, 30, 30, 0.5);
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
            --glass-blur: 8px;
            --glass-border: 1px solid rgba(255, 255, 255, 0.1);
            --line-spacing: 1.6;
        }

        /* Light Theme */
        .theme-light {
            --primary: #5e35b1;
            --secondary: #4dd0e1;
            --background: #f5f5f5;
            --text: #333333;
            --accent: #ff5252;
            --card-bg: rgba(255, 255, 255, 0.5);
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            --glass-border: 1px solid rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--background);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            transition: var(--transition);
            min-height: 100vh;
            position: relative;
        }

        /* Glassmorphism Effect */
        .glass {
            background: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur));
            -webkit-backdrop-filter: blur(var(--glass-blur));
            border: var(--glass-border);
            box-shadow: var(--shadow);
        }

        /* Background Animation Elements */
        #bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-element {
            position: absolute;
            opacity: 0.1;
            pointer-events: none;
            animation-timing-function: linear;
        }

        .ring {
            border: 2px solid var(--primary);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }

        .cube {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            animation: spin 20s infinite linear;
        }

        .triangle {
            width: 0;
            height: 0;
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
            border-bottom: 50px solid var(--accent);
            animation: float 12s infinite ease-in-out alternate;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Navigation */
        header {
            background: rgba(18, 18, 18, 0.7);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .theme-light header {
            background: rgba(245, 245, 245, 0.7);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--secondary);
        }

        .logo-mobile {
            display: none;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary);
            text-decoration: none;
            position: relative;
        }

        .logo-mobile::after {
            content: 'T';
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--accent);
            animation: dance 1s infinite alternate, glitch 0.5s infinite;
        }

        @keyframes dance {
            0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
            25% { transform: translateX(-50%) translateY(-5px) rotate(5deg); }
            50% { transform: translateX(-50%) translateY(0) rotate(0deg); }
            75% { transform: translateX(-50%) translateY(5px) rotate(-5deg); }
        }

        @keyframes glitch {
            0% { transform: translateX(-50%) translateY(0); }
            20% { transform: translateX(-50%) translateY(-2px) translateX(2px); }
            40% { transform: translateX(-50%) translateY(2px) translateX(-2px); }
            60% { transform: translateX(-50%) translateY(-2px) translateX(2px); }
            80% { transform: translateX(-50%) translateY(2px) translateX(-2px); }
            100% { transform: translateX(-50%) translateY(0); }
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .theme-selector {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .theme-btn {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 2px solid var(--card-bg);
            cursor: pointer;
            transition: var(--transition);
        }

        .theme-btn:hover {
            transform: scale(1.1);
        }

        .theme-default {
            background: #121212;
        }

        .theme-light-btn {
            background: #f5f5f5;
        }

        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 8rem 2rem 4rem;
        }

        .hero {
            text-align: center;
            margin-bottom: 3rem;
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--text);
            opacity: 0.9;
        }

        /* Generator Container */
        .generator-container {
            background: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur));
            -webkit-backdrop-filter: blur(var(--glass-blur));
            border: var(--glass-border);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
            transition: var(--transition);
        }

        .input-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--primary);
        }

        input[type="text"], select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid rgba(110, 69, 226, 0.3);
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text);
            font-size: 1rem;
            transition: var(--transition);
        }

        select option {
            background-color: var(--background);
            color: var(--text);
        }

        .theme-light input[type="text"], .theme-light select {
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
        }

        input[type="text"]:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(110, 69, 226, 0.2);
        }

        .style-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .style-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .style-option input {
            accent-color: var(--primary);
        }

        .btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-secondary:hover {
            background-color: var(--primary);
            color: white;
        }

        .action-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        /* Result Section */
        .result-container {
            margin-top: 2rem;
            text-align: center;
        }

        .result-box {
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            overflow-x: auto;
            font-family: 'Press Start 2P', cursive;
            font-size: clamp(0.8rem, 2vw, 1.2rem);
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .theme-light .result-box {
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* How It Works Section */
        .how-it-works {
            margin: 4rem 0;
            text-align: center;
        }

        .how-it-works h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 2rem;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .step-card {
            background: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur));
            -webkit-backdrop-filter: blur(var(--glass-blur));
            border: var(--glass-border);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: -15px;
            width: 60px;
            height: 60px;
            background-color: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .step-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .step-card h3 {
            font-family: 'Orbitron', sans-serif;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* About Section */
        .about-section {
            margin: 4rem 0;
            background: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur));
            -webkit-backdrop-filter: blur(var(--glass-blur));
            border: var(--glass-border);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: var(--shadow);
        }

        .about-section h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 2rem;
            color: var(--primary);
            text-align: center;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        /* FAQ Section */
        .faq-section {
            margin: 4rem 0;
        }

        .faq-section h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 2rem;
            text-align: center;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            background-color: var(--primary);
            color: white;
            padding: 1.5rem;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: var(--secondary);
        }

        .faq-answer {
            background-color: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur));
            -webkit-backdrop-filter: blur(var(--glass-blur));
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-answer-content {
            padding: 1.5rem;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-toggle {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
            transition: transform 0.3s ease;
        }

        .mobile-menu-btn:hover {
            transform: scale(1.1);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--card-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            padding: 2rem;
        }

        .mobile-nav.active {
            transform: translateX(0);
        }

        .mobile-nav .nav-links {
            flex-direction: column;
            gap: 2rem;
            text-align: center;
            margin-top: 2rem;
            width: 100%;
        }

        .mobile-nav .nav-links a {
            font-size: 1.2rem;
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
            padding: 0.5rem 1rem;
            display: block;
        }

        .mobile-nav .nav-links a:hover {
            color: var(--primary);
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
        }

        .mobile-nav .theme-selector {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 2rem;
            justify-content: center;
            width: 100%;
            padding: 1rem;
        }

        .mobile-nav .theme-btn {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }

        .mobile-nav .theme-btn:hover {
            transform: scale(1.1);
        }

        .close-mobile-menu {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .close-mobile-menu:hover {
            transform: scale(1.1);
        }

        /* Footer */
        footer {
            background: rgba(18, 18, 18, 0.7);
            backdrop-filter: blur(10px);
            padding: 3rem 2rem 1rem;
            margin-top: 3rem;
            transition: var(--transition);
        }

        .theme-light footer {
            background: rgba(245, 245, 245, 0.7);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
            opacity: 0.8;
        }

        .footer-links a:hover {
            color: var(--secondary);
            opacity: 1;
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .theme-light .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* Credit */
        .credit {
            position: fixed;
            bottom: 10px;
            right: 10px;
            font-size: 0.8rem;
            color: var(--text);
            opacity: 0.7;
            z-index: 100;
            background: var(--card-bg);
            backdrop-filter: blur(5px);
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }

        .credit a {
            color: var(--secondary);
            text-decoration: none;
        }

        /* Click Animation */
        .click-effect {
            position: fixed;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%) scale(0);
            pointer-events: none;
            z-index: 9999;
            animation: clickEffect 0.6s ease-out;
            mix-blend-mode: screen;
        }

        @keyframes clickEffect {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(3);
                opacity: 0;
            }
        }

        /* Hand Animation */
        .hand-animation {
            position: fixed;
            width: 80px;
            height: 80px;
            pointer-events: none;
            z-index: 9998;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M7 2v14h10v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-5h-2v-2h6V2H7z"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            animation: handPress 0.8s ease-out;
            opacity: 0;
            transform-origin: center;
        }

        @keyframes handPress {
            0% {
                transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
                opacity: 0;
            }
            20% {
                opacity: 1;
            }
            50% {
                transform: translate(-50%, -50%) scale(1) rotate(-10deg);
            }
            70% {
                transform: translate(-50%, -50%) scale(0.8) rotate(10deg);
            }
            100% {
                transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
                opacity: 0;
            }
        }

        /* Finger Tap Animation */
        .finger-tap {
            position: fixed;
            width: 40px;
            height: 40px;
            pointer-events: none;
            z-index: 9997;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 2a2 2 0 0 0-2 2v8a2 2 0 0 0 4 0V4a2 2 0 0 0-2-2z"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            animation: fingerTap 0.6s ease-out;
            opacity: 0;
        }

        @keyframes fingerTap {
            0% {
                transform: translate(-50%, -50%) scale(0.5);
                opacity: 0;
            }
            30% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
            70% {
                transform: translate(-50%, -50%) scale(0.8);
            }
            100% {
                transform: translate(-50%, -50%) scale(0.5);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .logo {
                display: none;
            }
            
            .logo-mobile {
                display: block;
            }
            
            .theme-selector {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                display: none;
            }
            
            main {
                padding: 7rem 1.5rem 2rem;
            }
            
            .generator-container {
                padding: 1.5rem;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .steps-container {
                grid-template-columns: 1fr;
            }
            
            .about-section, .generator-container {
                padding: 1.5rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .how-it-works h2, .faq-section h2, .about-section h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .style-options {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .how-it-works h2, .faq-section h2, .about-section h2 {
                font-size: 1.5rem;
            }
        }
    