	.header { padding:10px 15px; }
	.header h1{ font-size: 2.6rem; font-family:soraneubold; }
	.search-section {
            margin-bottom: 30px;
        }
        
        .search-form {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #999;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s;
			background-color:#000;
			color:#FFF;
        }
        
        .search-form input:focus {
            outline: none;
            border-color: #667eea;
        }
        
        .search-form button {
            padding: 12px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        .search-form button:active {
            transform: translateY(0);
        }
        
        .info-box {
           /* background: #e7f3ff;
            border-left: 4px solid #2196F3;*/
            padding: 0px 15px 10px 15px;
            border-radius: 4px;
            font-size: 14px;
            color: #CCC;
            line-height: 1.6;
			text-align:left;
			width:800px;
        }
        
        .category-title {
            font-size: 20px;
            font-weight: 600;
            color: #CCC;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea;
        }
        
        .characters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .character-card {
            background: #000;
            border: 1px solid #444;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }
        
        .character-card:hover {
            background: #333;
            border-color: #667eea;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
            transform: translateY(-2px);
        }
        
        .char-display {
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: 500;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
			color:#FFF;
        }
        
        .char-name {
            font-size: 12px;
            color: #999;
            margin-bottom: 8px;
            line-height: 1.4;
            min-height: 30px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .char-codes {
            font-size: 11px;
            color: #FFF;
            font-family: 'Courier New', monospace;
            margin-bottom: 8px;
            padding: 8px;
            background: #333;
            border-radius: 4px;
            cursor: text;
        }
        
        .copy-btn {
            width: 100%;
            padding: 6px;
            background: #667eea;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .copy-btn:hover {
            background: #764ba2;
        }
        
        .copy-btn.copied {
            background: #28a745;
        }
        
        .modal {
            display: block;
            position: fixed;
            z-index: 1;
            left: 1000px;
            top: 160px;
            
           /* background-color: rgba(0,0,0,0.5);*/
            animation: fadeIn 0.3s;
			
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            background-color: #333;
           
            padding: 10px;
            border-radius: 12px;
            width:400px;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            animation: slideDown 0.3s;
			border: 0px solid #CCC;
        }
        
        @keyframes slideDown {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0px;
            border-bottom: 0px solid #f0f0f0;
            padding-bottom: 0px;
        }
        
        .modal-title {
            font-size: 24px;
            font-weight: 600;
            color: #FFF;
        }
        
        .close {
            color: #999;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close:hover {
            color: #CCC;
        }
        
        .modal-body {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .char-preview {
            font-size: 60px;
            text-align: center;
            padding: 10px;
            background: #000;
            border-radius: 8px;
        }
        
        .char-info {
            display: grid;
            gap: 12px;
        }
        
        .info-row {
            padding: 12px;
            background: #000;
            border-radius: 6px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .info-label {
            font-weight: 500;
            color: #667eea;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .info-value {
            font-family: 'Courier New', monospace;
            font-size: 16px;
            color: #CCC;
            word-break: break-all;
        }
        
        .copy-icon {
            cursor: pointer;
            color: #667eea;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .copy-icon:hover {
            color: #764ba2;
        }
        
        .modal-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        
        .modal-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            flex: 1;
        }
        
        .modal-btn.primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .modal-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        .modal-btn.secondary {
            background: #f0f0f0;
            color: #333;
        }
        
        .modal-btn.secondary:hover {
            background: #e0e0e0;
        }
        
        .no-results {
            text-align: center;
            padding: 40px;
            color: #999;
        }
        
        .no-results h2 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #666;
        }
        
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #28a745;
            color: white;
            padding: 15px 20px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 2000;
            animation: slideUp 0.3s;
        }
        
        @keyframes slideUp {
            from { transform: translateY(100px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .tab-btn {
            padding: 8px 16px;
            background: #f0f0f0;
            border: 2px solid transparent;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .tab-btn:hover {
            border-color: #667eea;
        }
        
        .tab-btn.active {
            background: #667eea;
            color: white;
            border-color: #667eea;
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 25px;
            }
            
            .header h1 {
                font-size: 24px;
            }
            
            .content {
                padding: 20px;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .characters-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }
            
            .char-display {
                font-size: 32px;
            }
            
            .modal-content {
                width: 95%;
                margin: 20% auto;
            }
        }