
        :root {
            --bg-primary: #0a0a0f;
            --bg-secondary: #12121a;
            --bg-card: rgba(20, 20, 30, 0.7);
            --bg-glass: rgba(255, 255, 255, 0.03);
            --border-glass: rgba(255, 255, 255, 0.08);
            --text-primary: #e8e8f0;
            --text-secondary: #8b8b9e;
            --accent-cyan: #00d4ff;
            --accent-green: #00e676;
            --accent-yellow: #ffd600;
            --accent-red: #ff5252;
            --accent-purple: #b388ff;
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-success: linear-gradient(135deg, #00e676 0%, #00b248 100%);
            --gradient-warning: linear-gradient(135deg, #ffd600 0%, #ffab00 100%);
            --gradient-danger: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
            --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.15);
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            font-size: 14px;
        }

        /* Animated Background */
        .bg-mesh {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(ellipse at 20% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
            animation: bgPulse 8s ease-in-out infinite;
        }

        @keyframes bgPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Floating Orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            z-index: -1;
            opacity: 0.4;
        }

        .orb-1 {
            width: 280px;
            height: 280px;
            background: rgba(102, 126, 234, 0.3);
            top: -80px;
            left: -80px;
            animation: float 20s ease-in-out infinite;
        }

        .orb-2 {
            width: 220px;
            height: 220px;
            background: rgba(118, 75, 162, 0.3);
            bottom: -40px;
            right: -40px;
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Grid Pattern Overlay */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: 
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        /* Main Container - WIDE */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 1rem;
            position: relative;
            z-index: 1;
        }

        /* Header */
        .header {
            text-align: center;
            margin-bottom: 1rem;
            padding: 0.75rem 0;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #00d4ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
            border-radius: 2px;
        }

        .subtitle {
            color: var(--text-secondary);
            font-size: 0.7rem;
            margin-top: 0.35rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .stat-pill {
            background: var(--bg-glass);
            border: 1px solid var(--border-glass);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.3rem 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.75rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .stat-pill:hover {
            transform: translateY(-1px);
            border-color: rgba(255,255,255,0.15);
        }

        .stat-pill .label {
            color: var(--text-secondary);
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .stat-pill .value {
            font-weight: 700;
            font-size: 0.85rem;
        }

        .stat-pill.cvv .value { color: var(--accent-green); }
        .stat-pill.ccn .value { color: var(--accent-yellow); }
        .stat-pill.charge .value { color: var(--accent-purple); }
        .stat-pill.dead .value { color: var(--accent-red); }
        .stat-pill.checked .value { color: var(--accent-cyan); }
        .stat-pill.total .value { color: var(--text-primary); }

        /* Animated Card */
        .animated-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            padding: 1rem;
            margin-bottom: 1rem;
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .animated-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                from 0deg,
                transparent 0%,
                rgba(102, 126, 234, 0.1) 10%,
                rgba(0, 212, 255, 0.1) 20%,
                rgba(118, 75, 162, 0.1) 30%,
                transparent 40%,
                transparent 100%
            );
            animation: borderRotate 4s linear infinite;
            z-index: -1;
        }

        .animated-card::after {
            content: '';
            position: absolute;
            inset: 1px;
            background: var(--bg-card);
            border-radius: 19px;
            z-index: -1;
        }

        @keyframes borderRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .animated-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(102, 126, 234, 0.1);
        }

        /* Shimmer Effect */
        .shimmer {
            position: relative;
            overflow: hidden;
        }

        .shimmer::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.05),
                transparent
            );
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }

        /* Neon Glow Pulse */
        .neon-pulse {
            animation: neonPulse 2s ease-in-out infinite;
        }

        @keyframes neonPulse {
            0%, 100% { 
                box-shadow: 0 0 5px rgba(0, 212, 255, 0.2), 0 0 20px rgba(0, 212, 255, 0.1);
            }
            50% { 
                box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
            }
        }

        /* Floating Animation */
        .float-anim {
            animation: floatCard 6s ease-in-out infinite;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        /* Input Styling */
        .input-group {
            margin-bottom: 0.75rem;
            position: relative;
        }

        .input-group label {
            display: block;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-secondary);
            margin-bottom: 0.35rem;
            font-weight: 600;
        }

        .input-field {
            width: 100%;
            padding: 0.65rem 0.85rem;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-glass);
            border-radius: 10px;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .input-field::placeholder {
            color: rgba(139, 139, 158, 0.5);
        }

        .input-field:focus {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1), 0 0 20px rgba(0, 212, 255, 0.15);
            background: rgba(0, 0, 0, 0.4);
            animation: inputGlow 1.5s ease-in-out infinite;
        }

        @keyframes inputGlow {
            0%, 100% { box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1), 0 0 20px rgba(0, 212, 255, 0.15); }
            50% { box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2), 0 0 30px rgba(0, 212, 255, 0.25); }
        }

        textarea.input-field {
            resize: vertical;
            min-height: 100px;
            font-family: 'Space Mono', monospace;
            line-height: 1.5;
            text-align: center;
        }

        textarea.input-field::placeholder {
            text-align: center;
        }

        .input-with-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .input-with-btn .input-field {
            flex: 1;
        }

        .edit-url-btn {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.25);
            color: var(--accent-cyan);
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            font-size: 0.85rem;
        }

        .edit-url-btn:hover {
            background: rgba(0, 212, 255, 0.2);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
        }

        .settings-btn {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(139, 139, 158, 0.1);
            border: 1px solid var(--border-glass);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .settings-btn:hover {
            background: rgba(0, 212, 255, 0.1);
            border-color: rgba(0, 212, 255, 0.3);
            color: var(--accent-cyan);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.15);
        }

        .header {
            position: relative;
        }

        .range-field {
            -webkit-appearance: none;
            appearance: none;
            height: 8px;
            padding: 0;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 4px;
            cursor: pointer;
        }

        .range-field::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
            border: none;
        }

        .range-field::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
            border: none;
        }

        .line-editor {
            position: relative;
            display: flex;
            gap: 0;
        }

        .line-numbers {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--border-glass);
            border-right: none;
            border-radius: 10px 0 0 10px;
            padding: 0.65rem 0.4rem;
            color: var(--text-secondary);
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
            line-height: 1.5;
            text-align: right;
            overflow: hidden;
            white-space: pre;
            user-select: none;
            min-width: 30px;
        }

        .line-numbers-textarea {
            border-radius: 0 10px 10px 0 !important;
            font-family: 'Space Mono', monospace;
            line-height: 1.5;
            resize: vertical;
            min-height: 100px;
        }

        select.input-field {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b8b9e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }

        /* Grid Layout for Inputs - WIDE */
        .input-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            padding: 0.65rem 1.5rem;
            border: none;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5), 0 0 30px rgba(102, 126, 234, 0.3);
        }

        .btn-success {
            background: var(--gradient-success);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
            animation: btnPulse 2s ease-in-out infinite;
        }

        @keyframes btnPulse {
            0%, 100% { box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3); }
            50% { box-shadow: 0 4px 25px rgba(0, 230, 118, 0.5), 0 0 20px rgba(0, 230, 118, 0.2); }
        }

        .btn-success:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 230, 118, 0.4), 0 0 30px rgba(0, 230, 118, 0.3);
        }

        .btn-danger {
            background: var(--gradient-danger);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
        }

        .btn-danger:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 82, 82, 0.4), 0 0 30px rgba(255, 82, 82, 0.3);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.05);
            color: var(--text-secondary);
            border: 1px solid var(--border-glass);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            color: var(--text-primary);
            transform: translateY(-2px);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .btn-group {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        /* Results Cards */
        .result-card {
            position: relative;
            overflow: hidden;
            animation: none !important;
        }

        .result-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            border-radius: 20px 0 0 20px;
            animation: none !important;
        }

        .result-card:hover {
            transform: none !important;
        }

        .animated-card.result-card::before {
            animation: none !important;
        }

        .result-card.cvv-card::before { background: var(--accent-green); }
        .result-card.ccn-card::before { background: var(--accent-yellow); }
        .result-card.charge-card::before { background: var(--accent-purple); }
        .result-card.dead-card::before { background: var(--accent-red); }

        .aprovadas, .aprovadas * {
            color: var(--accent-green) !important;
        }

        .edrovadas, .edrovadas * {
            color: var(--accent-yellow) !important;
        }

        .chargeadas, .chargeadas * {
            color: var(--accent-purple) !important;
        }

        .reprovadas, .reprovadas * {
            color: var(--accent-red) !important;
        }

        .result-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.65rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-glass);
        }

        .result-title {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .result-title i {
            font-size: 0.7rem;
        }

        .result-actions {
            display: flex;
            gap: 0.35rem;
        }

        .icon-btn {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            border: 1px solid var(--border-glass);
            background: rgba(0,0,0,0.2);
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size: 0.75rem;
        }

        .icon-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
        }

        .icon-btn:hover::after {
            width: 100%;
            height: 100%;
        }

        .icon-btn:hover {
            color: var(--text-primary);
            transform: translateY(-2px);
            box-shadow: 0 0 15px rgba(255,255,255,0.1);
        }

        .result-content {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            padding: 0.65rem;
            min-height: 60px;
            max-height: 220px;
            overflow-y: auto;
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        .result-content::-webkit-scrollbar {
            width: 6px;
        }

        .result-content::-webkit-scrollbar-track {
            background: rgba(0,0,0,0.2);
            border-radius: 3px;
        }

        .result-content::-webkit-scrollbar-thumb {
            background: var(--border-glass);
            border-radius: 3px;
        }

        .result-content::-webkit-scrollbar-thumb:hover {
            background: rgba(255,255,255,0.2);
        }

        /* Checker Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-box {
            background: var(--bg-secondary);
            border: 1px solid var(--border-glass);
            border-radius: 18px;
            padding: 1.75rem 1.5rem;
            text-align: center;
            max-width: 340px;
            width: 90%;
            box-shadow: var(--shadow-glow), var(--shadow-card);
            animation: scaleIn 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .modal-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                from 0deg,
                transparent 0%,
                rgba(0, 212, 255, 0.1) 20%,
                transparent 40%
            );
            animation: borderRotate 3s linear infinite;
            z-index: -1;
        }

        .modal-box::after {
            content: '';
            position: absolute;
            inset: 1px;
            background: var(--bg-secondary);
            border-radius: 23px;
            z-index: -1;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scaleIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        /* Spinner */
        .spinner-ring {
            width: 50px;
            height: 50px;
            margin: 0 auto 1rem;
            position: relative;
        }

        .spinner-ring::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid rgba(255,255,255,0.05);
            border-top-color: var(--accent-cyan);
            border-right-color: var(--accent-purple);
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .check-icon {
            font-size: 2.25rem;
            color: var(--accent-green);
            margin-bottom: 0.75rem;
            display: none;
            animation: checkPop 0.5s ease;
        }

        @keyframes checkPop {
            0% { transform: scale(0); opacity: 0; }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); opacity: 1; }
        }

        .modal-box.complete .spinner-ring { display: none; }
        .modal-box.complete .check-icon { display: block; }

        .modal-title {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.35rem;
        }

        .modal-subtitle {
            color: var(--text-secondary);
            font-size: 0.8rem;
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 12px;
            right: 12px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-glass);
            border-left: 3px solid var(--accent-cyan);
            color: var(--text-primary);
            padding: 0.65rem 1rem;
            border-radius: 10px;
            box-shadow: var(--shadow-card);
            display: none;
            z-index: 2000;
            font-weight: 500;
            font-size: 0.85rem;
            animation: slideIn 0.3s ease, glowPulse 2s ease-in-out infinite;
            backdrop-filter: blur(20px);
        }

        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes glowPulse {
            0%, 100% { box-shadow: var(--shadow-card), 0 0 10px rgba(0, 212, 255, 0.1); }
            50% { box-shadow: var(--shadow-card), 0 0 25px rgba(0, 212, 255, 0.3); }
        }

        /* Card Generator Modal */
        .generator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .generator-grid .input-group:first-child,
        .generator-grid .input-group:last-child {
            grid-column: 1 / -1;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 1rem 0;
            color: var(--text-secondary);
            font-size: 0.8rem;
        }

        .footer-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1rem;
            animation: textShine 3s ease-in-out infinite;
            background-size: 200% auto;
        }

        @keyframes textShine {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 1rem 0.75rem;
            }

            .stats-bar {
                gap: 0.5rem;
            }

            .stat-pill {
                padding: 0.4rem 0.8rem;
                font-size: 0.75rem;
            }

            .animated-card {
                padding: 1rem;
                border-radius: 16px;
            }

            .input-grid {
                grid-template-columns: 1fr;
            }

            .btn-group {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .generator-grid {
                grid-template-columns: 1fr;
            }

            .modal-box {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 2rem;
            }

            .result-header {
                flex-direction: column;
                gap: 0.75rem;
                align-items: flex-start;
            }
        }

        /* Utility */
        .hidden { display: none !important; }
        .text-center { text-align: center; }
        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .w-full { width: 100%; }

        /* View Switcher */
        .view {
            display: none;
            animation: fadeIn 0.35s ease;
        }

        .view.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .switcher-bar {
            text-align: center;
            padding: 0.75rem 1rem 0.25rem;
            position: relative;
            z-index: 1;
        }

        .view-switcher {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            background: rgba(0, 0, 0, 0.35);
            border: 1px solid var(--border-glass);
            border-radius: 50px;
            padding: 0.25rem;
            margin-top: 0;
            backdrop-filter: blur(10px);
        }

        .switch-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 50px;
            background: transparent;
            color: var(--text-secondary);
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .switch-btn:hover {
            color: var(--text-primary);
        }

        .switch-btn.active {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        /* Site Checker accent colors */
        .stat-pill.hq .value { color: var(--accent-green); }
        .stat-pill.mid .value { color: var(--accent-yellow); }

        .result-card.hq-card::before { background: var(--accent-green); }
        .result-card.mid-card::before { background: var(--accent-yellow); }

        .hq-results, .hq-results * {
            color: var(--accent-green) !important;
        }

        .mid-results, .mid-results * {
            color: var(--accent-yellow) !important;
        }

        .dead-results, .dead-results * {
            color: var(--accent-red) !important;
        }
