/* ===== Password Generator Specific Styles ===== */
        .length-control {
            position: relative;
            padding: 4px 0;
        }
        
        .length-value {
            display: block;
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
            font-family: monospace;
        }
        
        .length-control input[type="range"] {
            width: 100%;
            accent-color: var(--primary);
            cursor: pointer;
        }
        
        .length-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.65rem;
            color: var(--text-muted);
        }
        
        .char-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px 16px;
        }
        
        @media (max-width: 640px) {
            .char-options {
                grid-template-columns: 1fr;
            }
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            cursor: pointer;
            font-weight: 500;
        }
        
        .checkbox-label input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: var(--primary);
            cursor: pointer;
            flex-shrink: 0;
        }
        
        .calc-form select {
            width: 100%;
            padding: 10px 14px;
            font-size: 0.95rem;
            font-family: inherit;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            background: var(--bg);
            color: var(--text);
            outline: none;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .calc-form select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
        }
        
        .strength-meter {
            background: var(--bg);
            padding: 14px 16px;
            border-radius: 10px;
            border: 1px solid var(--border);
            margin-top: 16px;
        }
        
        .strength-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 6px;
        }
        
        .strength-label {
            font-weight: 700;
        }
        
        .strength-bar {
            height: 6px;
            background: var(--border);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .strength-fill {
            height: 100%;
            border-radius: 4px;
            transition: width 0.4s ease, background 0.4s ease;
        }
        
        .passwords-container {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 16px;
            box-shadow: var(--shadow);
        }
        
        .passwords-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .passwords-header h3 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text);
        }
        
        .copy-all-btn {
            padding: 4px 16px;
            border: 1px solid var(--border);
            border-radius: 6px;
            background: var(--bg);
            font-family: inherit;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .copy-all-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .password-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .password-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 12px;
            background: var(--bg);
            border-radius: 6px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        
        .password-item:hover {
            border-color: var(--primary);
        }
        
        .password-item .password-text {
            font-family: monospace;
            font-size: 0.95rem;
            color: var(--text);
            word-break: break-all;
            padding-right: 12px;
            user-select: all;
        }
        
        .password-item .password-actions {
            display: flex;
            gap: 4px;
            flex-shrink: 0;
        }
        
        .password-item .password-actions button {
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: var(--transition);
            font-size: 0.7rem;
            font-weight: 500;
        }
        
        .password-item .password-actions button:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        
        .password-item .password-actions .copy-btn.copied {
            color: #10b981;
        }
        
        .password-list .empty-state {
            text-align: center;
            padding: 30px 20px;
            color: var(--text-muted);
            font-style: italic;
        }
        
        .password-list::-webkit-scrollbar {
            width: 4px;
        }
        
        .password-list::-webkit-scrollbar-track {
            background: transparent;
        }
        
        .password-list::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 4px;
        }
        
        .tips-container {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 16px;
            box-shadow: var(--shadow);
            margin-top: 16px;
        }
        
        .tips-container h4 {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        
        .tips-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .tips-list li {
            padding: 4px 0 4px 20px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            position: relative;
            line-height: 1.5;
        }
        
        .tips-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }
        
        .password-item .copied-feedback {
            font-size: 0.7rem;
            color: var(--primary);
            font-weight: 600;
            margin-right: 8px;
        }

        /* ===== Screenshot Figure ===== */
        .screenshot-figure {
            margin: 20px 0 30px;
        }

        .screenshot-figure img {
            width: 100%;
            max-width: 760px;
            height: auto;
            border: 1px solid var(--border);
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            display: block;
        }

        .screenshot-figure figcaption {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-align: center;
            margin-top: 8px;
        }

        .highlight-box {
            background: var(--primary-light);
            border-left: 4px solid var(--primary);
            border-radius: 8px;
            padding: 16px 20px;
            margin: 16px 0;
        }

        .highlight-box p {
            margin-bottom: 0;
            font-weight: 500;
            color: var(--text);
        }

        .strength-table {
            width: 100%;
            border-collapse: collapse;
            margin: 12px 0;
            font-size: 0.85rem;
        }

        .strength-table th,
        .strength-table td {
            padding: 8px 12px;
            border: 1px solid var(--border);
            text-align: left;
        }

        .strength-table th {
            background: var(--bg);
            font-weight: 600;
            color: var(--text-secondary);
        }

        .strength-table td {
            color: var(--text-secondary);
        }

        .strength-table .very-weak { color: #ef4444; font-weight: 600; }
        .strength-table .weak { color: #f97316; font-weight: 600; }
        .strength-table .medium { color: #f59e0b; font-weight: 600; }
        .strength-table .strong { color: #34d399; font-weight: 600; }
        .strength-table .very-strong { color: #10b981; font-weight: 600; }