/* === generators.html === */
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            min-height: 100vh;
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }
        .generators-container {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 20px;
            position: relative;
        }
        .generators-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        .generators-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }
        .generators-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
            border-radius: 2px;
        }
        .generators-subtitle {
            text-align: center;
            color: var(--gray);
            font-size: 1.2rem;
            margin-top: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        .generators-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .generator-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .generator-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, #8b5cf6 50%, var(--primary) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .generator-card:hover::before {
            transform: scaleX(1);
        }
        .generator-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
            border-color: var(--primary);
        }
        .generator-card:active {
            transform: translateY(-5px) scale(1.01);
        }
        .icon-wrapper {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            position: relative;
        }
        .generator-card:hover .icon-wrapper {
            background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
            transform: rotate(5deg) scale(1.1);
        }
        .generator-card i {
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.4s ease;
        }
        .generator-card:hover i {
            -webkit-text-fill-color: white;
            background: transparent;
        }
        .generator-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark);
            transition: color 0.3s ease;
        }
        .generator-card:hover h3 {
            color: var(--primary);
        }
        .generator-card p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 0.95rem;
            flex-grow: 1;
        }
        .generator-card .btn {
            width: 100%;
            margin-top: auto;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 24px;
            font-size: 1rem;
            text-decoration: none;
            color: white;
            border-radius: 8px;
            box-sizing: border-box;
        }
        .generator-card .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }
        .generator-card:hover .btn::before {
            left: 100%;
        }
        .generator-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
        }
        .decorative-bg {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
            filter: blur(80px);
            z-index: -1;
            pointer-events: none;
        }
        .decorative-bg-1 {
            top: -200px;
            right: -200px;
        }
        .decorative-bg-2 {
            bottom: -200px;
            left: -200px;
        }
        @media (max-width: 768px) {
            .generators-container {
                margin: 30px 0;
                padding: 0 15px;
                max-width: 100%;
                width: 100%;
                box-sizing: border-box;
            }
            .generators-header {
                margin-bottom: 40px;
                padding: 0 5px;
            }
            .generators-title {
                font-size: 2.2rem;
            }
            .generators-subtitle {
                font-size: 1rem;
                padding: 0 10px;
            }
            .generators-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                width: 100%;
                margin: 0;
            }
            .generator-card {
                padding: 30px 20px;
                margin: 0;
            }
            .icon-wrapper {
                width: 80px;
                height: 80px;
                margin-bottom: 20px;
            }
            .generator-card i {
                font-size: 2.8rem;
            }
            .generator-card h3 {
                font-size: 1.4rem;
                margin-bottom: 12px;
            }
            .generator-card p {
                margin-bottom: 20px;
                flex-grow: 1;
            }
            .generator-card .btn {
                padding: 14px 20px;
                font-size: 0.95rem;
                min-height: 48px;
                width: 100%;
                margin-top: auto;
            }
        }
        @media (max-width: 480px) {
            .generators-container {
                margin: 20px 0;
                padding: 0 10px;
                max-width: 100%;
                width: 100%;
                box-sizing: border-box;
            }
            .generators-header {
                padding: 0 3px;
            }
            .generators-title {
                font-size: 1.8rem;
            }
            .generators-title::after {
                width: 60px;
            }
            .generators-subtitle {
                font-size: 0.9rem;
                padding: 0 8px;
            }
            .generators-grid {
                gap: 18px;
                width: 100%;
            }
            .generator-card {
                padding: 25px 16px;
                margin: 0;
                width: 100%;
                box-sizing: border-box;
            }
            .icon-wrapper {
                width: 70px;
                height: 70px;
                margin-bottom: 18px;
            }
            .generator-card i {
                font-size: 2.5rem;
            }
            .generator-card h3 {
                font-size: 1.3rem;
                margin-bottom: 10px;
            }
            .generator-card p {
                font-size: 0.9rem;
                margin-bottom: 18px;
                flex-grow: 1;
            }
            .generator-card .btn {
                padding: 12px 16px;
                font-size: 0.9rem;
                min-height: 44px;
                width: 100%;
                margin-top: auto;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
        }

/* === generator-ksp.html === */
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }
        .ksp-container {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 20px;
        }
        .ksp-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .ksp-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .ksp-subtitle {
            text-align: center;
            color: var(--gray);
            font-size: 1.2rem;
            margin-top: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        .ksp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .ksp-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .ksp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, #8b5cf6 50%, var(--primary) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .ksp-card:hover::before {
            transform: scaleX(1);
        }
        .ksp-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
            border-color: var(--primary);
        }
        .icon-wrapper {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }
        .ksp-card:hover .icon-wrapper {
            background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
            transform: rotate(5deg) scale(1.1);
        }
        .ksp-card i {
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.4s ease;
        }
        .ksp-card:hover i {
            -webkit-text-fill-color: white;
            background: transparent;
        }
        .ksp-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark);
            transition: color 0.3s ease;
        }
        .ksp-card:hover h3 {
            color: var(--primary);
        }
        .ksp-card p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 0.95rem;
            flex-grow: 1;
        }
        .ksp-card .btn {
            width: 100%;
            margin-top: auto;
            background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 24px;
            font-size: 1rem;
            text-decoration: none;
            color: white;
            border-radius: 8px;
            box-sizing: border-box;
        }
        .ksp-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
        }
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        .back-link:hover {
            transform: translateX(-5px);
            color: #8b5cf6;
        }
        @media (max-width: 768px) {
            .ksp-container {
                margin: 30px 0;
                padding: 0 15px;
            }
            .ksp-title {
                font-size: 2.2rem;
            }
            .ksp-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .ksp-card {
                padding: 30px 20px;
            }
        }
