
        .starkpass-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .starkpass-container {
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            background: rgba(30, 30, 50, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            background-image: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
        }

        .password-rain {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 10;
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .password-rain.active {
            opacity: 1;
        }

        .rain-drop {
            position: absolute;
            color: #40e0d0;
            font-family: "Courier New", monospace;
            font-size: 12px;
            font-weight: bold;
            text-shadow: 0 0 5px rgba(64, 224, 208, 0.8);
            animation: rainFall 2s linear forwards;
            opacity: 0.8;
        }

        @keyframes rainFall {
            0% {
                transform: translateY(-100px);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(calc(100vh + 50px));
                opacity: 0;
            }
        }

        .security-pulse {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 12px;
            height: 12px;
            background: #00ff00;
            border-radius: 50%;
            animation: securityPulse 2s ease-in-out infinite;
            box-shadow: 0 0 10px #00ff00;
        }

        .security-pulse::after {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            width: 22px;
            height: 22px;
            border: 2px solid #00ff00;
            border-radius: 50%;
            animation: securityRipple 2s ease-out infinite;
        }

        @keyframes securityPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        @keyframes securityRipple {
            0% { transform: scale(0.8); opacity: 1; }
            100% { transform: scale(2); opacity: 0; }
        }

        .starkpass-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .lock-icon {
            font-size: 48px;
            color: #40e0d0;
            margin-bottom: 15px;
            display: inline-block;
            animation: lockPulse 2s ease-in-out infinite;
        }

        @keyframes lockPulse {
            0%, 100% { transform: scale(1); color: #40e0d0; }
            50% { transform: scale(1.1); color: #00ff88; }
        }

        .starkpass-title {
            color: #ffffff;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            animation: titleGlow 3s ease-in-out infinite;
            background: linear-gradient(45deg, #40e0d0, #00ff88, #ff6b6b, #4ecdc4);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes titleGlow {
            0%, 100% { 
                background-position: 0% 50%;
                filter: drop-shadow(0 0 10px rgba(64, 224, 208, 0.5));
            }
            50% { 
                background-position: 100% 50%;
                filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
            }
        }

        .starkpass-subtitle {
            color: #a0a0a0;
            font-size: 14px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            display: block;
        }

        .slider-container {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .slider-wrapper {
            flex: 1;
            position: relative;
        }

        .length-display {
            background: rgba(64, 224, 208, 0.1);
            border: 1px solid rgba(64, 224, 208, 0.3);
            border-radius: 8px;
            padding: 8px 16px;
            color: #40e0d0;
            font-weight: 700;
            font-size: 16px;
            min-width: 50px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(64, 224, 208, 0.2);
        }

        .slider {
            width: 100%;
            height: 8px;
            border-radius: 5px;
            background: linear-gradient(to right, #333 0%, #40e0d0 100%);
            outline: none;
            -webkit-appearance: none;
            position: relative;
        }

        .slider::-webkit-slider-thumb {
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(45deg, #40e0d0, #00ff88);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(64, 224, 208, 0.4);
            transition: all 0.3s ease;
        }

        .slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 20px rgba(64, 224, 208, 0.6);
        }

        .options-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 12px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .checkbox-container:hover {
            background: rgba(64, 224, 208, 0.1);
            border-color: rgba(64, 224, 208, 0.3);
        }

        .checkbox {
            position: relative;
            width: 20px;
            height: 20px;
            margin-right: 12px;
        }

        .checkbox input {
            opacity: 0;
            width: 100%;
            height: 100%;
            position: absolute;
            cursor: pointer;
        }

        .checkmark {
            position: absolute;
            top: 0;
            left: 0;
            height: 20px;
            width: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .checkbox input:checked ~ .checkmark {
            background: linear-gradient(45deg, #40e0d0, #00ff88);
            animation: checkboxPulse 0.3s ease;
        }

        @keyframes checkboxPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            left: 7px;
            top: 3px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 3px 3px 0;
            transform: rotate(45deg);
        }

        .checkbox input:checked ~ .checkmark:after {
            display: block;
        }

        .checkbox-label {
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
        }

        .count-selector {
            margin-bottom: 25px;
        }

        .count-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .count-btn {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 600;
        }

        .count-btn:hover {
            background: rgba(64, 224, 208, 0.2);
            border-color: rgba(64, 224, 208, 0.5);
        }

        .count-btn.active {
            background: linear-gradient(45deg, #40e0d0, #00ff88);
            color: #000;
            border-color: transparent;
        }

        .generate-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(45deg, #40e0d0, #00ff88, #ff6b6b, #4ecdc4);
            background-size: 400% 400%;
            border: none;
            border-radius: 12px;
            color: #000;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 25px;
            animation: buttonBreathe 2s ease-in-out infinite, gradientShift 4s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes buttonBreathe {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 5px 20px rgba(64, 224, 208, 0.3);
            }
            50% { 
                transform: scale(1.02);
                box-shadow: 0 8px 30px rgba(64, 224, 208, 0.5);
            }
        }

        .generate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(64, 224, 208, 0.4);
        }

        .generate-btn.generating {
            animation: generating 1s ease-in-out, buttonBreathe 2s ease-in-out infinite, gradientShift 4s ease infinite;
        }

        @keyframes generating {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .results {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .results.show {
            opacity: 1;
            transform: translateY(0);
        }

        .password-item {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            position: relative;
            animation: passwordSlideIn 0.6s ease forwards;
            opacity: 0;
            transform: translateX(-50px) scale(0.9);
            transition: all 0.3s ease;
        }

        .password-item:hover {
            transform: translateX(0) scale(1.02);
            border-color: rgba(64, 224, 208, 0.5);
            box-shadow: 0 5px 20px rgba(64, 224, 208, 0.2);
        }

        @keyframes passwordSlideIn {
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .password-text {
            font-family: "Courier New", monospace;
            color: #40e0d0;
            font-size: 16px;
            word-break: break-all;
            margin-bottom: 8px;
        }

        .strength-preview {
            margin-top: 15px;
            padding: 15px;
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .strength-preview.show {
            opacity: 1;
            transform: translateY(0);
        }

        .strength-preview-title {
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .preview-strength-indicator {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .preview-strength-bar {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        .preview-strength-fill {
            height: 100%;
            border-radius: 3px;
            transition: all 0.5s ease;
        }

        .strength-weak { background: linear-gradient(90deg, #ff4444, #ff6666); width: 33%; }
        .strength-medium { background: linear-gradient(90deg, #ffaa00, #ffcc44); width: 66%; }
        .strength-strong { background: linear-gradient(90deg, #00ff88, #40e0d0); width: 100%; }

        .preview-strength-text {
            color: #ffffff;
            font-size: 12px;
            font-weight: 600;
            min-width: 60px;
        }

        .copy-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(64, 224, 208, 0.2);
            border: 1px solid rgba(64, 224, 208, 0.3);
            border-radius: 6px;
            color: #40e0d0;
            padding: 6px 12px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            background: rgba(64, 224, 208, 0.3);
            transform: scale(1.05);
        }
        