 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Primary Brand Colors - orange and pink */
            --primary-orange: #ff6a00;
            --primary-pink: #ee0979;
            --primary-gradient: linear-gradient(135deg, #ff6a00, #ee0979);
            --primary-light: rgba(255, 106, 0, 0.1);
            --primary-dark: #cc5500;
            --seo-green: #4CAF50;

            /* Neutrals */
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: "Segoe UI", Arial, sans-serif;
            background: #f4f7fb;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header */
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            background: #fff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-container i {
            font-size: 1.8rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.3rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .brand-highlight {
            color: var(--primary-orange);
            font-weight: 700;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 15px;
        }

        nav ul li a {
            text-decoration: none;
            font-weight: bold;
            color: #444;
            position: relative;
            transition: color 0.3s ease;
            padding: 5px 8px;
            font-size: 0.95rem;
        }

        nav ul li a:hover {
            color: var(--primary-orange);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: #444;
            cursor: pointer;
            z-index: 1001;
            transition: color 0.3s ease;
            padding: 5px;
        }

        .menu-toggle:hover {
            color: var(--primary-orange);
        }

        @media (max-width: 768px) {
            header {
                padding: 12px 15px;
            }
            
            .menu-toggle {
                display: block;
            }

            nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                z-index: 999;
                padding: 80px 20px 20px;
                transform: translateX(-100%);
                transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                opacity: 0;
            }

            nav.active {
                display: block;
                transform: translateX(0);
                opacity: 1;
            }

            nav ul {
                flex-direction: column;
                gap: 0;
                margin-top: 20px;
            }

            nav ul li {
                text-align: center;
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.3s ease, transform 0.3s ease;
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

            nav ul li:last-child {
                border-bottom: none;
            }

            nav.active ul li {
                opacity: 1;
                transform: translateY(0);
            }

            nav ul li a {
                display: block;
                padding: 18px 20px;
                font-size: 1.1rem;
                width: 100%;
                text-align: center;
            }

            .logo-text {
                font-size: 1.2rem;
            }
            
            .logo-container i {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 10px 12px;
            }
            
            .logo-text {
                font-size: 1.1rem;
            }
            
            nav ul li a {
                padding: 16px 20px;
            }
        }

        /* Main content wrapper to push footer to bottom */
        .main-content {
            flex: 1 0 auto;
            width: 100%;
            padding: 15px 0 0;
        }

        /* Hero */
        .hero {
            background: var(--primary-gradient);
            color: var(--white);
            text-align: center;
            padding: 50px 15px;
        }

        .hero h1 {
            font-size: 2.2rem;
            margin-bottom: 12px;
            animation: fadeInDown 1s ease;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            position: relative;
            display: inline-block;
            line-height: 1.3;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .hero p {
            font-size: 1.1rem;
            animation: fadeInUp 1.2s ease;
            max-width: 800px;
            margin: 20px auto 0;
            line-height: 1.6;
            padding: 0 10px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 40px 12px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
                padding: 0;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            
            .hero p {
                font-size: 0.95rem;
            }
        }

        /* Tools Heading */
        .tools-heading {
            text-align: center;
            margin: 25px auto;
            animation: fadeInDown 1s ease;
            width: 100%;
            max-width: 1200px;
            padding: 0 15px;
        }

        .tools-heading h2 {
            font-size: 1.8rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .tools-heading h2::after {
            content: "";
            width: 60px;
            height: 4px;
            background: var(--primary-gradient);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .tools-heading h2:hover::after {
            width: 100px;
        }

        .tools-heading p {
            font-size: 1rem;
            color: var(--gray);
            max-width: 650px;
            margin: 15px auto 0;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .tools-heading {
                padding: 0 12px;
                margin: 20px auto;
            }
            
            .tools-heading h2 {
                font-size: 1.5rem;
            }
            
            .tools-heading p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .tools-heading h2 {
                font-size: 1.3rem;
            }
            
            .tools-heading p {
                font-size: 0.9rem;
                padding: 0 5px;
            }
        }

        /* Generator Container */
        .generator-container {
            width: 100%;
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 15px;
        }

        .generator-card {
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow);
            padding: 25px;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
            color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .generator-card::before {
            content: 'Toolnex AI';
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--primary-gradient);
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .generator-card:hover {
            transform: translateY(-3px);
        }

        .generator-title {
            font-size: 1.4rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            padding-bottom: 10px;
        }

        .generator-title::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--primary-gradient);
            bottom: 0;
            left: 0;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .generator-card:hover .generator-title::after {
            width: 70px;
        }

        @media (max-width: 768px) {
            .generator-container {
                padding: 0 12px;
            }
            
            .generator-card {
                padding: 20px;
                border-radius: 14px;
            }
            
            .generator-title {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .generator-container {
                padding: 0 10px;
            }
            
            .generator-card {
                padding: 15px;
            }
            
            .generator-title {
                font-size: 1.2rem;
            }
        }

        /* Input Sections */
        .input-sections {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-bottom: 20px;
        }

        @media (min-width: 992px) {
            .input-sections {
                flex-direction: row;
            }
        }

        .input-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .input-container h3 {
            font-size: 1rem;
            color: var(--primary-orange);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        input, select, textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #e1e5eb;
            border-radius: 10px;
            background-color: var(--white);
            color: var(--dark);
            font-size: 0.95rem;
            line-height: 1.5;
            transition: all 0.3s ease;
        }

        textarea {
            min-height: 150px;
            resize: vertical;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
        }

        input::placeholder, textarea::placeholder {
            color: var(--gray);
        }

        @media (max-width: 480px) {
            .input-container h3 {
                font-size: 0.95rem;
            }
            
            input, select, textarea {
                padding: 12px;
                font-size: 0.9rem;
            }
        }

        /* Emoji Preview */
        .emoji-preview-container {
            margin-top: 8px;
        }

        .emoji-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }

        .emoji-item {
            font-size: 1.3rem;
            padding: 6px 10px;
            background: rgba(255, 106, 0, 0.1);
            border-radius: 8px;
            cursor: default;
            transition: all 0.3s ease;
            border-left: 3px solid var(--primary-orange);
        }

        .emoji-item:hover {
            background: rgba(255, 106, 0, 0.2);
            transform: translateY(-2px);
        }

        @media (max-width: 480px) {
            .emoji-item {
                font-size: 1.1rem;
                padding: 5px 8px;
            }
        }

        /* Controls Section */
        .controls {
            background: rgba(255, 106, 0, 0.05);
            border-radius: 14px;
            padding: 20px;
            margin: 20px 0;
            border: 2px solid rgba(255, 106, 0, 0.1);
        }

        .control-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
        }

        label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .controls {
                padding: 18px;
            }
        }

        @media (max-width: 480px) {
            .controls {
                padding: 15px;
            }
            
            label {
                font-size: 0.9rem;
            }
        }

        /* ===== CREATIVITY BUTTONS ===== */
        .creativity-controls {
            background: var(--white);
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            margin: 15px 0 25px;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(255, 106, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        .creativity-controls:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 106, 0, 0.12);
            border-color: rgba(255, 106, 0, 0.2);
        }

        .creativity-controls::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 16px 16px 0 0;
        }

        .creativity-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .creativity-title {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .creativity-title h4 {
            font-size: 1.2rem;
            color: var(--dark);
            font-weight: 700;
            position: relative;
            padding-left: 18px;
        }

        .creativity-title h4::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 22px;
            background: var(--primary-gradient);
            border-radius: 3px;
            animation: slideInLeft 0.6s ease-out;
        }

        .creativity-title i {
            font-size: 1.4rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px) translateY(-50%);
            }
            to {
                opacity: 1;
                transform: translateX(0) translateY(-50%);
            }
        }

        .creativity-display {
            position: relative;
            padding: 12px 16px;
            background: linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(238, 9, 121, 0.08));
            border-radius: 14px;
            border: 2px solid rgba(255, 106, 0, 0.15);
            min-width: 100px;
            text-align: center;
            backdrop-filter: blur(8px);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .creativity-display:hover {
            transform: scale(1.05);
            border-color: rgba(255, 106, 0, 0.3);
            box-shadow: 0 8px 20px rgba(255, 106, 0, 0.15);
        }

        .creativity-value {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            text-shadow: 0 4px 15px rgba(255, 106, 0, 0.2);
            transition: all 0.3s ease;
        }

        .creativity-label {
            font-size: 0.8rem;
            color: var(--gray);
            margin-top: 4px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .creativity-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .creativity-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 20px 15px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(8px);
            border: 2px solid rgba(255, 106, 0, 0.1);
            min-width: 110px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .creativity-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .creativity-btn:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 106, 0, 0.25);
            box-shadow: 0 12px 25px rgba(255, 106, 0, 0.15);
        }

        .creativity-btn:hover::before {
            transform: scaleX(1);
        }

        .creativity-btn.active {
            transform: translateY(-8px) scale(1.03);
            background: linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(238, 9, 121, 0.08));
            border-color: rgba(255, 106, 0, 0.35);
            box-shadow: 0 15px 30px rgba(255, 106, 0, 0.2);
        }

        .creativity-btn.active::before {
            transform: scaleX(1);
        }

        .creativity-btn i {
            font-size: 1.8rem;
            margin-bottom: 8px;
            transition: all 0.4s ease;
            background: linear-gradient(135deg, var(--gray), #aaa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .creativity-btn.active i {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transform: scale(1.2);
            filter: drop-shadow(0 2px 6px rgba(255, 106, 0, 0.25));
        }

        .creativity-btn-text {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .creativity-btn.active .creativity-btn-text {
            color: var(--primary-pink);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        }

        .creativity-btn-desc {
            font-size: 0.8rem;
            color: var(--gray);
            text-align: center;
            line-height: 1.3;
            margin-top: 6px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            max-height: 0;
            overflow: hidden;
        }

        .creativity-btn:hover .creativity-btn-desc,
        .creativity-btn.active .creativity-btn-desc {
            opacity: 1;
            transform: translateY(0);
            max-height: 35px;
        }

        .creativity-btn-value {
            position: absolute;
            top: 8px;
            right: 8px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary-orange);
            background: rgba(255, 106, 0, 0.1);
            padding: 3px 6px;
            border-radius: 8px;
            opacity: 0.8;
        }

        /* Responsive Design for Creativity Controls */
        @media (max-width: 768px) {
            .creativity-controls {
                padding: 20px;
            }
            
            .creativity-header {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
                margin-bottom: 20px;
            }
            
            .creativity-display {
                align-self: stretch;
                min-width: auto;
                padding: 10px 14px;
            }
            
            .creativity-buttons {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .creativity-value {
                font-size: 1.6rem;
            }
            
            .creativity-btn {
                padding: 18px 12px;
                flex-direction: row;
                text-align: left;
                gap: 15px;
                min-height: 80px;
            }
            
            .creativity-btn i {
                margin-bottom: 0;
                font-size: 1.6rem;
                min-width: 40px;
            }
            
            .creativity-btn-text {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .creativity-controls {
                padding: 15px;
                margin: 12px 0 20px;
            }
            
            .creativity-title h4 {
                font-size: 1.1rem;
                padding-left: 15px;
            }
            
            .creativity-title i {
                font-size: 1.2rem;
            }
            
            .creativity-value {
                font-size: 1.4rem;
            }
            
            .creativity-label {
                font-size: 0.75rem;
            }
            
            .creativity-btn {
                padding: 15px 10px;
                min-height: 70px;
            }
            
            .creativity-btn i {
                font-size: 1.4rem;
            }
            
            .creativity-btn-text {
                font-size: 0.9rem;
            }
            
            .creativity-btn-desc {
                font-size: 0.75rem;
            }
        }

        /* ===== BUTTONS SECTION (FIXED) ===== */
        .buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
            width: 100%;
        }

        @media (min-width: 576px) {
            .buttons {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px;
            }
        }

        .generate-btn, .clear-btn, .copy-btn, .download-btn {
            padding: 14px 20px;
            border: none;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            text-align: center;
            white-space: nowrap;
        }

        @media (min-width: 576px) {
            .generate-btn, .clear-btn, .copy-btn, .download-btn {
                width: auto;
                min-width: 150px;
                flex: 0 1 auto;
            }
            
            .buttons .copy-btn,
            .buttons .download-btn {
                min-width: 140px;
            }
        }

        .generate-btn i, .clear-btn i, .copy-btn i, .download-btn i {
            font-size: 1rem;
        }

        .generate-btn {
            background: var(--primary-gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
        }

        .generate-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
        }

        .clear-btn {
            background-color: rgba(255, 106, 0, 0.1);
            border: 2px solid rgba(255, 106, 0, 0.3);
            color: var(--primary-orange);
        }

        .clear-btn:hover {
            background-color: rgba(255, 106, 0, 0.2);
            transform: translateY(-2px);
        }

        .copy-btn {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
            color: white;
            box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
        }

        .copy-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
        }

        .download-btn {
            background: linear-gradient(135deg, #4CAF50, #2E7D32);
            color: white;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        }

        @media (max-width: 480px) {
            .generate-btn, .clear-btn, .copy-btn, .download-btn {
                padding: 12px 16px;
                font-size: 0.9rem;
            }
            
            .buttons {
                gap: 10px;
            }
        }

        /* Output Sections */
        .output-section {
            background: #f9f9f9;
            border-radius: 14px;
            padding: 20px;
            margin-top: 20px;
            border: 2px solid rgba(255, 106, 0, 0.2);
        }

        .output-header {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 15px;
        }

        @media (min-width: 576px) {
            .output-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        .output-header h3 {
            color: var(--primary-orange);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.2rem;
        }

        .essay-output {
            background: white;
            border-radius: 10px;
            padding: 20px;
            border: 1px solid #e1e5eb;
            min-height: 300px;
            line-height: 1.7;
            white-space: pre-wrap;
            font-size: 1rem;
            max-height: 500px;
            overflow-y: auto;
        }

        .essay-title {
            text-align: center;
            font-size: 1.5rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(255, 106, 0, 0.2);
        }

        .section-title {
            font-size: 1.2rem;
            color: var(--primary-pink);
            margin-top: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .essay-body {
            text-align: justify;
            margin-bottom: 15px;
        }

        /* Word Count */
        .word-count {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
            color: #666;
            font-size: 0.85rem;
        }

        @media (min-width: 480px) {
            .word-count {
                flex-direction: row;
                justify-content: space-between;
                gap: 0;
            }
        }

        /* Loading Animation */
        .loading {
            display: none;
            text-align: center;
            padding: 30px;
            color: var(--primary-orange);
        }

        .loading i {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }

        .feature-card {
            background-color: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-3px);
        }

        .feature-card i {
            font-size: 2rem;
            color: var(--primary-orange);
            margin-bottom: 12px;
        }

        .feature-card h3 {
            margin-bottom: 10px;
            color: #333;
            font-size: 1.1rem;
        }

        .feature-card p {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .features {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 12px;
            }
        }

        @media (max-width: 480px) {
            .features {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .feature-card {
                padding: 15px;
            }
        }

        /* How to Use Section */
        .how-to-use {
            width: 100%;
            max-width: 1200px;
            margin: 25px auto;
            padding: 0 15px;
        }

        .how-to-use-card {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 25px;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
            color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .how-to-use-card::before {
            content: 'Toolnex AI';
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--primary-gradient);
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .how-to-use-card:hover {
            transform: translateY(-3px);
        }

        .how-to-use-card h2 {
            font-size: 1.5rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            padding-bottom: 10px;
        }

        .how-to-use-card h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary-gradient);
            bottom: 0;
            left: 0;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .how-to-use-card:hover h2::after {
            width: 120px;
        }

        .how-to-use-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .step {
            background: var(--light);
            border-radius: 12px;
            padding: 18px;
            text-align: center;
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-orange);
            position: relative;
            overflow: hidden;
        }

        .step:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--primary-gradient);
            color: var(--white);
            border-radius: 50%;
            font-weight: bold;
            margin: 0 auto 12px;
            font-size: 1.1rem;
            box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
        }

        .step h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--dark);
            position: relative;
            padding-bottom: 8px;
        }

        .step h3::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            background: var(--primary-orange);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 1px;
        }

        .step p {
            color: var(--gray);
            line-height: 1.5;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .how-to-use {
                padding: 0 12px;
            }
            
            .how-to-use-card {
                padding: 20px;
            }
            
            .how-to-use-card h2 {
                font-size: 1.3rem;
            }
            
            .how-to-use-steps {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 12px;
            }
        }

        @media (max-width: 480px) {
            .how-to-use {
                padding: 0 10px;
                margin: 20px auto;
            }
            
            .how-to-use-card {
                padding: 15px;
            }
            
            .how-to-use-card h2 {
                font-size: 1.2rem;
            }
            
            .how-to-use-steps {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .step {
                padding: 15px;
            }
            
            .step h3 {
                font-size: 1rem;
            }
        }

        /* Generator Footer */
        .generator-footer {
            text-align: center;
            margin-top: 25px;
            padding: 15px;
            color: var(--gray);
            font-size: 0.85rem;
            border-top: 1px solid #eee;
        }

        .disclaimer {
            max-width: 800px;
            margin: 10px auto 0;
            font-size: 0.75rem;
            color: #95a5a6;
            line-height: 1.4;
            padding: 0 10px;
        }

        .Toolnex-powered {
            font-size: 0.85rem;
            color: var(--primary-orange);
            font-weight: 600;
            margin-top: 15px;
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        @media (max-width: 480px) {
            .generator-footer {
                padding: 12px 10px;
            }
            
            .disclaimer {
                font-size: 0.7rem;
                padding: 0 5px;
            }
        }

        /* Enhanced Footer Styles */
        footer {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: var(--white);
            padding: 20px 12px;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            width: 100%;
            margin-top: 20px;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            z-index: 1;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-logo {
            margin-bottom: 12px;
            transition: transform 0.5s ease;
        }

        .footer-logo:hover {
            transform: translateY(-3px);
        }

        .footer-logo .logo-text {
            font-size: 1.5rem;
            color: white;
            -webkit-text-fill-color: white;
        }

        .footer-description {
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 12px;
            max-width: 100%;
            opacity: 0.9;
            padding: 0 10px;
        }

        .footer-heading {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            padding-bottom: 6px;
            display: inline-block;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 2px;
            background: var(--primary-gradient);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .footer-heading:hover::after {
            width: 40px;
        }

        .footer-tools ul,
        .footer-quick-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            padding: 0;
            margin: 0;
        }

        .footer-tools ul li a,
        .footer-quick-links ul li a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.9;
            transition: opacity 0.3s ease, color 0.3s ease;
            font-size: 0.85rem;
        }

        .footer-tools ul li a:hover,
        .footer-quick-links ul li a:hover {
            opacity: 1;
            color: #ffcc00;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 12px;
            justify-content: center;
            align-items: center;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-social a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.3s ease;
            z-index: -1;
        }

        .footer-social a:hover {
            transform: translateY(-2px);
            color: var(--white);
        }

        .footer-social a:hover::after {
            transform: scale(1);
        }

        .footer-social a i {
            transition: transform 0.3s ease;
        }

        .footer-social a:hover i {
            transform: scale(1.1);
        }

        .footer-contact {
            margin-top: 12px;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            opacity: 0.9;
            font-size: 0.85rem;
        }

        .footer-contact i {
            margin-right: 6px;
            color: #ffcc00;
            font-size: 14px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            font-size: 0.8rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            grid-column: 1 / -1;
        }

        .footer-bottom p {
            margin-bottom: 10px;
            opacity: 0.9;
            width: 100%;
        }

        .footer-legal {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
        }

        .footer-legal a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease, color 0.3s ease;
            font-size: 0.8rem;
            position: relative;
            white-space: nowrap;
        }

        .footer-legal a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            background: #ffcc00;
            bottom: -2px;
            left: 0;
            transition: width 0.3s ease;
        }

        .footer-legal a:hover {
            opacity: 1;
            color: #ffcc00;
        }

        .footer-legal a:hover::after {
            width: 100%;
        }

        .footer-bubble {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            animation: float 8s infinite ease-in-out;
        }

        .footer-bubble:nth-child(1) {
            width: 50px;
            height: 50px;
            top: 20%;
            left: 5%;
            animation-delay: 0s;
        }

        .footer-bubble:nth-child(2) {
            width: 30px;
            height: 30px;
            top: 60%;
            left: 8%;
            animation-delay: 1s;
        }

        .footer-bubble:nth-child(3) {
            width: 40px;
            height: 40px;
            top: 30%;
            right: 5%;
            animation-delay: 2s;
        }

        .footer-bubble:nth-child(4) {
            width: 25px;
            height: 25px;
            top: 70%;
            right: 10%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-10px) rotate(10deg);
            }
        }

        /* Newsletter Form */
        .footer-newsletter {
            margin-top: 12px;
            width: 100%;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: center;
        }

        .newsletter-input {
            padding: 10px 12px;
            border: none;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.12);
            color: var(--white);
            font-size: 14px;
            transition: background 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            max-width: 220px;
        }

        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.18);
            box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.5);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .newsletter-btn {
            padding: 10px 12px;
            border: none;
            border-radius: 6px;
            background: var(--primary-gradient);
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            max-width: 220px;
            font-size: 14px;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
        }

        /* Responsive Design for Footer */
        @media (min-width: 769px) {
            .footer-container {
                grid-template-columns: repeat(4, 1fr);
                gap: 30px;
            }

            .footer-bottom {
                grid-column: 1 / span 4;
            }
            
            footer {
                padding: 25px 20px;
            }
        }

        @media (max-width: 480px) {
            footer {
                padding: 15px 10px;
            }
            
            .footer-container {
                gap: 20px;
            }
            
            .footer-logo .logo-text {
                font-size: 1.3rem;
            }

            .footer-heading {
                font-size: 1rem;
            }

            .footer-tools ul,
            .footer-quick-links ul {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .footer-social a {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }

            .footer-contact p {
                font-size: 0.8rem;
            }

            .footer-contact i {
                font-size: 13px;
            }

            .footer-legal a {
                font-size: 0.75rem;
            }

            .newsletter-input,
            .newsletter-btn {
                padding: 8px 10px;
                font-size: 12px;
                max-width: 180px;
            }
        }