   .tiomit {
       
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
        
        }
        
        .tokcon {
            max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
      
        }

         .tokconbody {
            max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
             padding:25px;
        }
        
        .generator-header {
            background: #121212;
            color: white;
            padding: 25px 30px;
            text-align: center;
        }
        
        .generator-header h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .generator-header p {
            color: #ccc;
            font-size: 16px;
        }
        
        .generator-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            padding: 30px;
        }
        
        @media (max-width: 768px) {
            .generator-content {
                grid-template-columns: 1fr;
            }
        }
        
        .form-section {
            display: flex;
            flex-direction: column;
        }
        
        .formit-group {
            margin-bottom: 20px;
        }
        
        .formit-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        
        .formit-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .formit-control:focus {
            border-color: #ff0050;
            outline: none;
            box-shadow: 0 0 0 2px rgba(255, 0, 80, 0.2);
        }
        
        .char-count {
            text-align: right;
            font-size: 14px;
            color: #888;
            margin-top: 5px;
        }
        
        .generate-btn {
            background: #ff0050;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }
        
        .generate-btn:hover {
            background: #e00045;
        }
        
        .results-section {
            display: flex;
            flex-direction: column;
        }
        
        .results-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .username-list {
            list-style: none;
            flex-grow: 1;
            max-height: 300px;
            overflow-y: auto;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 10px;
        }
        
        .username-item {
            padding: 12px 15px;
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .username-item:hover {
            border-color: #ff0050;
            background-color: rgba(255, 0, 80, 0.02);
        }
        
        .copy-btn {
            background: none;
            border: none;
            color: #ff0050;
            cursor: pointer;
            font-size: 16px;
            padding: 5px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        
        .copy-btn:hover {
            background: rgba(255, 0, 80, 0.1);
        }
        
        .loading {
            text-align: center;
            padding: 20px;
            color: #666;
        }
        
      