.mnemonic-output {
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            border-radius: 20px;
            padding: 1.8rem;
            margin: 1.5rem 0;
            border-left: 6px solid #4361ee;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            font-size: 1.6rem;
            font-weight: 500;
            text-align: center;
            font-family: 'Segoe UI', 'Roboto', system-ui;
            word-break: break-word;
        }
        .mnemonic-phrase {
            color: #1e2a5e;
            background-color: rgba(67, 97, 238, 0.08);
            padding: 1rem;
            border-radius: 16px;
            margin: 1rem 0;
        }
        .word-breakdown {
            background: #f1f3f9;
            border-radius: 16px;
            padding: 1.2rem;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            margin-top: 1rem;
            border: 1px solid #dee2e6;
        }
        .style-selector {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 1rem 0 1.5rem;
        }
        .style-badge {
            background: #e9ecef;
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.2s;
            font-weight: 500;
            font-size: 0.9rem;
        }
        .style-badge.active {
            background: #4361ee;
            color: white;
            box-shadow: 0 2px 8px rgba(67,97,238,0.3);
        }
        .style-badge:hover:not(.active) {
            background: #cdd4e0;
        }
        .randomize-btn {
            margin-left: 0.5rem;
        }
        .feature-icon {
            font-size: 2rem;
            color: #4361ee;
            margin-right: 0.75rem;
        }
        .cognitive-note {
            background: #eef2ff;
            border-radius: 20px;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        .example-pill {
            background: white;
            border-radius: 40px;
            padding: 0.3rem 1rem;
            margin: 0.3rem;
            display: inline-block;
            border: 1px solid #cbd5e1;
            cursor: pointer;
            transition: all 0.15s;
            font-size: 0.85rem;
        }
        .example-pill:hover {
            background: #4361ee;
            color: white;
            border-color: #4361ee;
        }
        .copy-toast {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: #1e2a5e;
            color: white;
            padding: 10px 20px;
            border-radius: 40px;
            font-size: 0.9rem;
            z-index: 1100;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        .sentence-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-left: 1rem;
        }
        .char-limit-warning {
            font-size: 0.8rem;
            margin-top: 0.25rem;
        }