#bee-game-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.bee-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

#user-word-input {
    flex: 1;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
}

#user-word-input:focus {
    border-color: #4f46e5;
}

#generate-words-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    background-color: #4f46e5;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#generate-words-btn:hover:not(:disabled) {
    background-color: #4338ca;
}

#generate-words-btn:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
}

#bee-game-results h3 {
    margin-top: 0;
    color: #1e293b;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.word-group-section {
    margin-top: 20px;
}

.word-group-section h4 {
    margin: 0 0 10px 0;
    color: #4f46e5;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.word-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.word-item {
    background-color: #f1f5f9;
    color: #334155;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.no-results {
    color: #64748b;
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
}
